-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist_of_functions.txt
80 lines (80 loc) · 2.12 KB
/
list_of_functions.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
func and(bool,bool) bool
func contains(int,const []int) bool
func contains(string,const []string) bool
func contains(string,string) bool
func contains(uint,const []uint) bool
func elem([][]byte,int) []byte
func elem([]bool,int) bool
func elem([]double,int) double
func elem([]int,int) int
func elem([]string,int) string
func elem([]uint,int) uint
func eq([]byte,[]byte) bool
func eq(bool,bool) bool
func eq(double,double) bool
func eq(int,int) bool
func eq(string,string) bool
func eq(uint,uint) bool
func eqFold(string,string) bool
func ge([]byte,[]byte) bool
func ge(double,double) bool
func ge(int,int) bool
func ge(uint,uint) bool
func gt([]byte,[]byte) bool
func gt(double,double) bool
func gt(int,int) bool
func gt(uint,uint) bool
func hasPrefix(string,string) bool
func hasSuffix(string,string) bool
func le([]byte,[]byte) bool
func le(double,double) bool
func le(int,int) bool
func le(uint,uint) bool
func length([][]byte) int
func length([]bool) int
func length([]byte) int
func length([]double) int
func length([]int) int
func length([]string) int
func length([]uint) int
func length(string) int
func lt([]byte,[]byte) bool
func lt(double,double) bool
func lt(int,int) bool
func lt(uint,uint) bool
func ne([]byte,[]byte) bool
func ne(bool,bool) bool
func ne(double,double) bool
func ne(int,int) bool
func ne(string,string) bool
func ne(uint,uint) bool
func not(bool) bool
func now() int
func or(bool,bool) bool
func print([][]byte) [][]byte
func print([]bool) []bool
func print([]byte) []byte
func print([]double) []double
func print([]int) []int
func print([]string) []string
func print([]uint) []uint
func print(bool) bool
func print(double) double
func print(int) int
func print(string) string
func print(uint) uint
func range([][]byte,int,int) [][]byte
func range([]bool,int,int) []bool
func range([]double,int,int) []double
func range([]int,int,int) []int
func range([]string,int,int) []string
func range([]uint,int,int) []uint
func regex(const string,string) bool
func toLower(string) string
func toUpper(string) string
func type([]byte) bool
func type(bool) bool
func type(double) bool
func type(int) bool
func type(string) bool
func type(uint) bool