![]() |
Black Ops 3 Source Code Explorer
0.1
An script explorer for Black Ops 3 by ZeRoY
|
Go to the source code of this file.
Functions | |
function | _filter_undefined (val) |
for (i=a_keys.size - 1;i >=0;i--) | |
foreach (key, val in array) | |
function | remove_index (array, index, b_keep_keys) |
Variables | |
return | a_new |
function filter | array |
function _filter_undefined | ( | val | ) |
Definition at line 61 of file array_shared.gsc.
for | ( | i | = a_keys.size - 1; i >= 0; i-- | ) |
foreach | ( | key | , |
val in | array | ||
) |
Definition at line 19 of file array_shared.gsc.
References a_new, IS_TRUE, and single_func().
function remove_index | ( | array | , |
index | , | ||
b_keep_keys | |||
) |
Description:
"Function Name: array::remove_index( <array>, <index>, [b_keep_keys] )"
"Summary: Removes a specified index from an array, returns a new array with the specified index removed." "Module: Array"
"Mandatory Argument(s): <array> : The array we will remove an index from."
"Mandatory Argument(s): <index> : The index we will remove from the array."
"Optional Argument(s): [b_keep_keys] : If true, retain existing keys. If false or undefined, existing keys of original array will be replaced by ints."
"Example:a_new = array::remove_index( array, 3 );"
"Single Player / Multi Player: both"
Definition at line 119 of file array_shared.gsc.
return a_new |
Definition at line 50 of file array_shared.gsc.
Referenced by foreach(), and remove_index().
function get_touching array |
Description:
Definition at line 16 of file array_shared.gsc.
Referenced by for(), and remove_index().