Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
slsh /
help /
[ HOME SHELL ]
Name
Size
Permission
Action
arrayfuns.hlp
1.79
KB
-rw-r--r--
base64funs.hlp
5.92
KB
-rw-r--r--
chksumfuns.hlp
1.82
KB
-rw-r--r--
cmdopt.hlp
6.83
KB
-rw-r--r--
csvfuns.hlp
14.14
KB
-rw-r--r--
forkfuns.hlp
5.42
KB
-rw-r--r--
fswalk.hlp
4.2
KB
-rw-r--r--
glob.hlp
458
B
-rw-r--r--
histfuns.hlp
7.08
KB
-rw-r--r--
jsonfuns.hlp
3.15
KB
-rw-r--r--
listfuns.hlp
5.68
KB
-rw-r--r--
onigfuns.hlp
5.3
KB
-rw-r--r--
pcrefuns.hlp
6.45
KB
-rw-r--r--
pngfuns.hlp
8.86
KB
-rw-r--r--
print.hlp
1.92
KB
-rw-r--r--
process.hlp
7.45
KB
-rw-r--r--
profile.hlp
3.38
KB
-rw-r--r--
randfuns.hlp
15.06
KB
-rw-r--r--
readascii.hlp
4.7
KB
-rw-r--r--
require.hlp
2.38
KB
-rw-r--r--
setfuns.hlp
3.33
KB
-rw-r--r--
slsmg.hlp
12.42
KB
-rw-r--r--
sockfuns.hlp
6.34
KB
-rw-r--r--
statsfuns.hlp
24.29
KB
-rw-r--r--
structfuns.hlp
2.48
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : setfuns.hlp
complement SYNOPSIS Extract the elements of a set that are not contained in other sets. USAGE indices = complement (a, b, ..., c) DESCRIPTION This function computes the elements of the first argument (`a') that are not contained in the sets given by the other arguments (`b,...,c') and returns them in the form of indices into the first argument. EXAMPLE a = {"foo", PI, 7}; b = [1,2,3,PI]; indices = complement (a, b); Upon return, `indices' will have the value `[0, 2]' since `a[0]' and `a[2]' are not contained in `b'. NOTES A set may either be an Array_Type or a List_Type object. For a homogeneous collection of objects, it is better to use an Array_Type. i.e., `[1,2,3]' instead of `{1,2,3}'. SEE ALSO intersection, ismember, union, unique -------------------------------------------------------------- intersection SYNOPSIS Extract the common elements of two or more sets USAGE indices = complement (a, b, ..., c) DESCRIPTION This function computes the common elements of two or more sets and returns them in the form of indices into the first argument. EXAMPLE a = {"foo", 7, PI}; b = {PI, "bar", "foo"}; indices = intersection (a, b); Upon return, `indices' will have the value `[0, 2]' since `a[0]' and `a[2]' are the common elements of the sets. NOTES A set may either be an Array_Type or a List_Type object. For a homogeneous collection of objects, it is better to use an Array_Type. i.e., `[1,2,3]' instead of `{1,2,3}'. SEE ALSO complement, ismember, union, unique -------------------------------------------------------------- ismember SYNOPSIS test to see if the elements of one set are members of another USAGE val = ismember (a, b) DESCRIPTION This function may be used to see which of the elements of the set `a' are members of the set `b'. It returns a boolean array indicating whether or not the corresponding element of `a' is a member of `b'. NOTES A set may either be an Array_Type or a List_Type object. For a homogeneous collection of objects, it is better to use an Array_Type. i.e., `[1,2,3]' instead of `{1,2,3}'. SEE ALSO complement, intersection, union, unique -------------------------------------------------------------- union SYNOPSIS Form a set of the unique elements of one ore more subsets USAGE abc = union (a, b,..., c) DESCRIPTION This function interprets each of its arguments as a set, then merges them together and returns only the unique elements. The returned value may either be an Array_Type or a List_Type object. NOTES A set may either be an Array_Type or a List_Type object. For a homogeneous collection of objects, it is better to use an Array_Type. i.e., `[1,2,3]' instead of `{1,2,3}'. SEE ALSO complement, intersection, ismember, unique -------------------------------------------------------------- unique SYNOPSIS Get the indices of the unique elements of a set USAGE indices = unique (A) DESCRIPTION This function returns an array of the indices of the unique elements of a set. NOTES A set may either be an Array_Type or a List_Type object. For a homogeneous collection of objects, it is better to use an Array_Type. i.e., `[1,2,3]' instead of `{1,2,3}'. SEE ALSO complement, intersection, ismember, union --------------------------------------------------------------
Close