MCPcopy Create free account

hub / github.com/Go-Learning-Land/Go-Learning-Archive / functions

Functions5,073 in github.com/Go-Learning-Land/Go-Learning-Archive

↓ 18 callersMethodAny
Map invokes the given function once for each element and returns a container containing the values returned by the given function as key/value pairs.
GolangDataStructuresAndAlgorithms/Golang Data Structures/containers/enumerable.go:47
↓ 18 callersMethodRemove
(index int)
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/lists.go:20
↓ 18 callersMethodprint
()
GolangBasics/learngo/interfaces/08-promoted-methods/list.go:14
↓ 17 callersFunctionNew
New instantiates a bidirectional map.
GolangDataStructuresAndAlgorithms/Golang Data Structures/maps/hashbidimap/hashbidimap.go:34
↓ 16 callersMethodContains
(values ...interface{})
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/lists.go:22
↓ 16 callersFunctionNew
New instantiates a hash map.
GolangDataStructuresAndAlgorithms/Golang Data Structures/maps/hashmap/hashmap.go:28
↓ 16 callersMethodTypeOf
()
GolangBooks/blackhatGo/ch-3/bing-metadata/metadata/pdf.go:206
↓ 16 callersMethodclone
()
GolangDesignPatterns/refactoringGuru/prototype/inode.go:5
↓ 15 callersMethodIterator
Iterator returns a stateful iterator whose values can be fetched by an index.
GolangDataStructuresAndAlgorithms/Golang Data Structures/queues/circularbuffer/iterator.go:19
↓ 15 callersMethodIterator
Iterator returns a stateful iterator whose values can be fetched by an index.
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/binaryheap/iterator.go:21
↓ 15 callersFunctionJ
(a,b)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jquery.min.js:34
↓ 15 callersFunctionNewWithStringComparator
NewWithStringComparator instantiates a tree map with the StringComparator, i.e. keys are of type string.
GolangDataStructuresAndAlgorithms/Golang Data Structures/maps/treemap/treemap.go:41
↓ 15 callersMethodRead
Using pointer to S1 for changes to be persistent when the method exits
GolangBooks/masteringGo/ch06/ioInterface.go:20
↓ 15 callersMethodSum
Sum the numeric fields with another record.
GolangBasics/learngo/logparser/v6/logly/record/record.go:22
↓ 15 callersFunctionToString
ToString converts a value to string.
GolangDataStructuresAndAlgorithms/Golang Data Structures/utils/utils.go:18
↓ 15 callersFunctionb
(c,e)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jquery.min.js:34
↓ 15 callersFunctionl
(e,s)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jquery-ui-1.10.4.custom.min.js:36
↓ 15 callersFunctionopposite
opposite method
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter04/avl_tree.go:26
↓ 15 callersFunctionr
(e)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jstz.min.js:35
↓ 14 callersMethodIterator
Iterator returns a stateful iterator whose values can be fetched by an index.
GolangDataStructuresAndAlgorithms/Golang Data Structures/queues/priorityqueue/iterator.go:21
↓ 14 callersMethodIterator
Iterator returns a stateful iterator whose values can be fetched by an index.
GolangDataStructuresAndAlgorithms/Golang Data Structures/queues/arrayqueue/iterator.go:19
↓ 14 callersMethodIterator
Iterator returns a stateful iterator whose values can be fetched by an index.
GolangDataStructuresAndAlgorithms/Golang Data Structures/stacks/arraystack/iterator.go:19
↓ 13 callersMethodIterator
Iterator returns a stateful iterator whose values can be fetched by an index.
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/singlylinkedlist/iterator.go:20
↓ 13 callersMethodresize
(cap int)
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/arraylist/arraylist.go:202
↓ 12 callersMethodHandle
(what string)
GolangBooks/handsOnSoftwareArch/Chapter03/command.go:75
↓ 12 callersMethodInsert
(index int, values ...interface{})
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/lists.go:25
↓ 12 callersFunctionNewWithIntComparators
NewWithIntComparators instantiates a bidirectional map with the IntComparator for key and value, i.e. keys and values are of type int.
GolangDataStructuresAndAlgorithms/Golang Data Structures/maps/treebidimap/treebidimap.go:55
↓ 12 callersFunctionf
(from string)
GolangBasics/GoByExample/023Goroutines.go:8
↓ 12 callersFunctionja
(a)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jquery.min.js:34
↓ 12 callersMethodoff
()
GolangDesignPatterns/refactoringGuru/command/device.go:5
↓ 11 callersFunctione
(a,b)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jquery.min.js:36
↓ 11 callersFunctiong
()
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jquery.min.js:35
↓ 11 callersFunctionn
(t)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jquery-ui-1.10.4.custom.min.js:36
↓ 10 callersMethodAddClass
AddClass method
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter09/knowledge_catalog.go:30
↓ 10 callersMethodAddClass
AddClass method
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter09/test/knowledge_catalog.go:30
↓ 10 callersMethodEach
Each calls the given function once for each element, passing that element's key and value.
GolangDataStructuresAndAlgorithms/Golang Data Structures/containers/enumerable.go:36
↓ 10 callersMethodHeight
Height returns the height of the tree.
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/btree/btree.go:164
↓ 10 callersMethodWrite
(p []byte)
GolangConcurrency/Concurrency_in_Go_Golang_udemy_course/03-exercise-solution/01-Interfaces/03-byte-counter/main.go:8
↓ 10 callersFunctiona
()
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jstz.min.js:35
↓ 10 callersFunctiona
(t)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jquery-ui-1.10.4.custom.min.js:36
↓ 10 callersFunctionfilter
(f filterFunc, nums ...int)
GolangBasics/learngo/advfuncs/06-functional-programming/main.go:88
↓ 10 callersFunctionia
(a)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jquery.min.js:34
↓ 10 callersMethodsearch
(string)
GolangDesignPatterns/refactoringGuru/composite/component.go:4
↓ 9 callersMethodAccept
(Visitor)
GolangBooks/handsOnSoftwareArch/Chapter03/visitor.go:9
↓ 9 callersMethodHas
(key string)
GolangBooks/blackhatGo/ch-6/smb/smb/encoder/encoder.go:33
↓ 9 callersMethodMap
Map invokes the given function once for each element and returns a container containing the values returned by the given function as key/value pairs.
GolangDataStructuresAndAlgorithms/Golang Data Structures/maps/treemap/enumerable.go:25
↓ 9 callersMethodRead
Read implements the io.Reader interface.
GolangBasics/learngo/interfaces/18-testing/reader.go:25
↓ 9 callersFunctioncheck
(e error)
GolangBasics/GoByExample/060ReadFiles.go:10
↓ 9 callersFunctiond
(a)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jquery.min.js:35
↓ 9 callersFunctionfilter
(f filterFunc, nums ...int)
GolangBasics/learngo/advfuncs/04-closures/main.go:70
↓ 9 callersMethodisLeaf
(node *Node)
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/btree/btree.go:247
↓ 9 callersFunctionurlencode
(str)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/common.js:478
↓ 9 callersMethodwithinRange
Check that the index is within bounds of the list
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/doublylinkedlist/doublylinkedlist.go:342
↓ 8 callersMethodAdd
Add appends a value (one or more) at the end of the list (same as Append())
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/doublylinkedlist/doublylinkedlist.go:46
↓ 8 callersMethodAdd
Add appends a value (one or more) at the end of the list (same as Append())
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/singlylinkedlist/singlylinkedlist.go:45
↓ 8 callersMethodAddElement
adds the element to the set
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter03/set.go:21
↓ 8 callersMethodFull
Full returns true if the queue is full, i.e. has reached the maximum number of elements that it can hold.
GolangDataStructuresAndAlgorithms/Golang Data Structures/queues/circularbuffer/circularbuffer.go:100
↓ 8 callersMethodGetString
(key string)
GolangBooks/blackhatGo/ch-6/smb/smb/encoder/encoder.go:53
↓ 8 callersMethodIterator
Iterator returns a stateful iterator whose values can be fetched by an index.
GolangDataStructuresAndAlgorithms/Golang Data Structures/queues/linkedlistqueue/iterator.go:19
↓ 8 callersFunctionNewPDFData
(buf []byte, stripNewLines bool)
GolangBooks/blackhatGo/ch-3/bing-metadata/metadata/pdf.go:49
↓ 8 callersMethodPeek
()
GolangDataStructuresAndAlgorithms/Golang Data Structures/stacks/stacks.go:18
↓ 8 callersMethodRun
()
GolangBooks/handsOnSoftwareArch/Chapter03/command.go:51
↓ 8 callersMethoddiscount
(ratio float64)
GolangBasics/learngo/interfaces/08-promoted-methods/list.go:15
↓ 8 callersFunctionfunction
()
GolangBooks/masteringGo/ch07/forgetMutex.go:11
↓ 8 callersFunctionnewHeader
()
GolangBooks/blackhatGo/ch-6/smb/smb/smb.go:218
↓ 8 callersFunctiono
(e)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jstz.min.js:35
↓ 8 callersFunctionreverse
(f filterFunc)
GolangBasics/learngo/advfuncs/06-functional-programming/main.go:70
↓ 8 callersMethodsend
(req interface{})
GolangBooks/blackhatGo/ch-6/smb/smb/session.go:342
↓ 8 callersFunctionshow
(n int)
GolangBasics/learngo/25-functions/02-basics/main.go:59
↓ 8 callersMethodsibling
()
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/redblacktree/redblacktree.go:356
↓ 8 callersMethodwithinRange
Check that the index is within bounds of the list
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/arraylist/arraylist.go:198
↓ 7 callersMethodAddLink
Add Link
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter09/knowledge_catalog.go:41
↓ 7 callersMethodAddLink
Add Link
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter09/test/knowledge_catalog.go:41
↓ 7 callersMethodEach
(func(Record) error)
GolangBasics/learngo/logparser/v5/pipe/pipe.go:13
↓ 7 callersMethodIterator
Iterator returns a stateful iterator whose values can be fetched by an index.
GolangDataStructuresAndAlgorithms/Golang Data Structures/stacks/linkedliststack/iterator.go:19
↓ 7 callersFunctionNewWithStringComparator
NewWithStringComparator instantiates a new empty heap with the StringComparator, i.e. elements are of type string.
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/binaryheap/binaryheap.go:42
↓ 7 callersMethodSwap
(index1, index2 int)
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/lists.go:24
↓ 7 callersFunctiondump
dump prints the string header of a string value
GolangBasics/learngo/19-strings-runes-bytes/05-internals/main.go:43
↓ 7 callersMethodsetState
(s State)
GolangDesignPatterns/refactoringGuru/state/vendingMachine.go:59
↓ 7 callersFunctionuniques
()
GolangBasics/learngo/advfuncs/06-functional-programming/main.go:59
↓ 7 callersMethodwithinRange
Check that the index is within bounds of the list
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/singlylinkedlist/singlylinkedlist.go:299
↓ 6 callersMethodAdd
Add adds the items (one or more) to the set.
GolangDataStructuresAndAlgorithms/Golang Data Structures/sets/treeset/treeset.go:59
↓ 6 callersMethodAddEntity
AddEntity method
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter09/social_graph_example.go:27
↓ 6 callersMethodAddLink
Add Link
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter09/social_graph_example.go:38
↓ 6 callersMethodAddLink
Add Link
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter09/test/map_layout.go:44
↓ 6 callersMethodAddPlace
AddPlace method
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter09/test/map_layout.go:33
↓ 6 callersMethodCount
(context.Context, string)
GolangBooks/handsOnSoftwareArch/Chapter07/go_kit.go:16
↓ 6 callersFunctionD
(e)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jquery-ui-1.10.4.custom.min.js:36
↓ 6 callersMethodFetchData
(buf []byte, ref Reference)
GolangBooks/blackhatGo/ch-3/bing-metadata/metadata/pdf.go:423
↓ 6 callersFunctionGetCustomers
()
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter02/database_operations.go:37
↓ 6 callersMethodIndexOf
IndexOf returns index of provided element
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/arraylist/arraylist.go:107
↓ 6 callersFunctionInsertNode
InsertNode method
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter04/avl_tree.go:118
↓ 6 callersMethodLeft
Left returns the left-most (min) node or nil if tree is empty.
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/btree/btree.go:169
↓ 6 callersMethodRight
Right returns the right-most (max) node or nil if tree is empty.
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/btree/btree.go:190
↓ 6 callersMethodSelect
Select returns a new container containing all elements for which the given function returns a true value.
GolangDataStructuresAndAlgorithms/Golang Data Structures/maps/treemap/enumerable.go:36
↓ 6 callersMethodToString
()
GolangBooks/blackhatGo/ch-3/bing-metadata/metadata/pdf.go:419
↓ 6 callersMethoddeleteEntry
(node *Node, index int)
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/btree/btree.go:580
↓ 6 callersMethodexecute
(*Patient)
GolangDesignPatterns/refactoringGuru/chainOfResponsibility/department.go:4
↓ 6 callersFunctionh
(a,b,c)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jquery.min.js:34
↓ 6 callersMethodhandleRequest
(string, string)
GolangDesignPatterns/refactoringGuru/proxy/server.go:4
← previousnext →101–200 of 5,073, ranked by callers