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

↓ 2 callersMethodPrev
Prev moves the iterator to the previous element and returns true if there was a previous element in the container. If Prev() returns true, then previo
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/doublylinkedlist/iterator.go:47
↓ 2 callersMethodPrev
Prev moves the iterator to the previous element and returns true if there was a previous element in the container. If Prev() returns true, then previo
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/arraylist/iterator.go:37
↓ 2 callersMethodPrev
Prev moves the iterator to the previous element and returns true if there was a previous element in the container. If Prev() returns true, then previo
GolangDataStructuresAndAlgorithms/Golang Data Structures/sets/treeset/iterator.go:41
↓ 2 callersMethodPrev
Prev moves the iterator to the previous element and returns true if there was a previous element in the container. If Prev() returns true, then previo
GolangDataStructuresAndAlgorithms/Golang Data Structures/stacks/arraystack/iterator.go:37
↓ 2 callersFunctionPrint
(s []T)
GolangBooks/masteringGo/ch01/generics.go:7
↓ 2 callersMethodPrint
()
GolangDesignPatterns/refactoringGuru/bridge/mac.go:9
↓ 2 callersMethodPrint
()
GolangDesignPatterns/refactoringGuru/bridge/windows.go:9
↓ 2 callersMethodPrintFile
()
GolangDesignPatterns/refactoringGuru/bridge/printer.go:4
↓ 2 callersFunctionPrintNumeric
(s T)
GolangBooks/masteringGo/ch13/interfaces.go:27
↓ 2 callersMethodPut
Put inserts key-value pair into the map. Key should adhere to the comparator's type assertion, otherwise method panics.
GolangDataStructuresAndAlgorithms/Golang Data Structures/maps/treemap/treemap.go:47
↓ 2 callersMethodRemoveMax
RemoveMax removes the max value and flag if found
GolangDataStructuresAndAlgorithms/Golang Data Structures/examples/redblacktreeextended/redblacktreeextended.go:46
↓ 2 callersMethodRemoveMin
RemoveMin removes the min value and flag if found
GolangDataStructuresAndAlgorithms/Golang Data Structures/examples/redblacktreeextended/redblacktreeextended.go:36
↓ 2 callersFunctionRemoveNode
RemoveNode method
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter04/avl_tree.go:123
↓ 2 callersMethodReset
Reset all the fields of this record.
GolangBasics/learngo/logparser/v6/logly/record/record.go:28
↓ 2 callersMethodRightKey
RightKey returns the right-most (max) key or nil if tree is empty.
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/btree/btree.go:195
↓ 2 callersMethodRightValue
RightValue returns the right-most value or nil if tree is empty.
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/btree/btree.go:203
↓ 2 callersFunctionSa
()
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jquery.min.js:35
↓ 2 callersMethodSchedule
(cmd Report)
GolangBooks/handsOnSoftwareArch/Chapter03/command.go:47
↓ 2 callersMethodSelect
Select returns a new container containing all elements for which the given function returns a true value.
GolangDataStructuresAndAlgorithms/Golang Data Structures/maps/treebidimap/enumerable.go:33
↓ 2 callersMethodSelect
Select returns a new container containing all elements for which the given function returns a true value.
GolangDataStructuresAndAlgorithms/Golang Data Structures/maps/linkedhashmap/enumerable.go:33
↓ 2 callersMethodSelect
Select returns a new container containing all elements for which the given function returns a true value.
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/doublylinkedlist/enumerable.go:32
↓ 2 callersMethodSelect
Select returns a new container containing all elements for which the given function returns a true value.
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/arraylist/enumerable.go:32
↓ 2 callersMethodSelect
Select returns a new container containing all elements for which the given function returns a true value.
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/singlylinkedlist/enumerable.go:32
↓ 2 callersMethodSetPrinter
(p Printer)
GolangDesignPatterns/refactoringGuru/bridge/mac.go:14
↓ 2 callersMethodSetPrinter
(p Printer)
GolangDesignPatterns/refactoringGuru/bridge/windows.go:14
↓ 2 callersMethodSetState
(state string)
GolangBooks/handsOnSoftwareArch/Chapter03/mediator.go:28
↓ 2 callersMethodSetState
(state string)
GolangBooks/handsOnSoftwareArch/Chapter03/mememto.go:16
↓ 2 callersMethodSetValue
SetValue method
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter09/sparse_matrix.go:72
↓ 2 callersMethodSize
()
GolangDataStructuresAndAlgorithms/Golang Data Structures/containers/containers_test.go:25
↓ 2 callersFunctionStringifyList
Stringify List method
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter06/linked_list.go:37
↓ 2 callersMethodUnion
Union returns the union of two sets. The new set consists of all elements that are in "set" or "another" (possibly both). The two sets should have the
GolangDataStructuresAndAlgorithms/Golang Data Structures/sets/treeset/treeset.go:150
↓ 2 callersMethodUnion
Union returns the union of two sets. The new set consists of all elements that are in "set" or "another" (possibly both). Ref: https://en.wikipedia.or
GolangDataStructuresAndAlgorithms/Golang Data Structures/sets/hashset/hashset.go:127
↓ 2 callersMethodUnion
Union returns the union of two sets. The new set consists of all elements that are in "set" or "another" (possibly both). Ref: https://en.wikipedia.or
GolangDataStructuresAndAlgorithms/Golang Data Structures/sets/linkedhashset/linkedhashset.go:146
↓ 2 callersMethodUnmarshalBinary
([]byte, *Metadata)
GolangBooks/blackhatGo/ch-6/smb/smb/encoder/encoder.go:15
↓ 2 callersMethodValue
Value returns the current element's value. Does not modify the state of the iterator.
GolangDataStructuresAndAlgorithms/Golang Data Structures/maps/treebidimap/iterator.go:42
↓ 2 callersMethodValue
Value returns the current element's value. Does not modify the state of the iterator.
GolangDataStructuresAndAlgorithms/Golang Data Structures/maps/linkedhashmap/iterator.go:45
↓ 2 callersMethodValue
Value returns the current element's value. Does not modify the state of the iterator.
GolangDataStructuresAndAlgorithms/Golang Data Structures/maps/treemap/iterator.go:42
↓ 2 callersMethodValue
Value returns the current element's value. Does not modify the state of the iterator.
GolangDataStructuresAndAlgorithms/Golang Data Structures/queues/circularbuffer/iterator.go:46
↓ 2 callersMethodValue
Value returns the current element's value. Does not modify the state of the iterator.
GolangDataStructuresAndAlgorithms/Golang Data Structures/queues/arrayqueue/iterator.go:46
↓ 2 callersMethodValue
Value returns the current element's value. Does not modify the state of the iterator.
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/avltree/iterator.go:72
↓ 2 callersMethodValue
Value returns the current element's value. Does not modify the state of the iterator.
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/btree/iterator.go:152
↓ 2 callersMethodValue
Value returns the current element's value. Does not modify the state of the iterator.
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/redblacktree/iterator.go:118
↓ 2 callersMethodValue
Value returns the current element's value. Does not modify the state of the iterator.
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/binaryheap/iterator.go:48
↓ 2 callersMethodValue
Value returns the current element's value. Does not modify the state of the iterator.
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/doublylinkedlist/iterator.go:65
↓ 2 callersMethodValue
Value returns the current element's value. Does not modify the state of the iterator.
GolangDataStructuresAndAlgorithms/Golang Data Structures/lists/arraylist/iterator.go:46
↓ 2 callersMethodValue
Value returns the current element's value. Does not modify the state of the iterator.
GolangDataStructuresAndAlgorithms/Golang Data Structures/sets/treeset/iterator.go:50
↓ 2 callersMethodValue
Value returns the current element's value. Does not modify the state of the iterator.
GolangDataStructuresAndAlgorithms/Golang Data Structures/sets/linkedhashset/iterator.go:42
↓ 2 callersMethodValue
Value returns the current element's value. Does not modify the state of the iterator.
GolangDataStructuresAndAlgorithms/Golang Data Structures/stacks/arraystack/iterator.go:46
↓ 2 callersMethodVisit
(Node)
GolangBooks/handsOnSoftwareArch/Chapter03/visitor.go:27
↓ 2 callersFunction_
()
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jquery.min.js:35
↓ 2 callersMethodaccept
(v Visitor)
GolangDesignPatterns/refactoringGuru/visitor/square.go:7
↓ 2 callersMethodaccept
(v Visitor)
GolangDesignPatterns/refactoringGuru/visitor/circle.go:7
↓ 2 callersMethodaccept
(v Visitor)
GolangDesignPatterns/refactoringGuru/visitor/rectangle.go:8
↓ 2 callersMethodadd
Branch class method add leaflet
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter01/composite.go:47
↓ 2 callersMethodadd
add adds the metrics of another Result to itself and returns a new Result
GolangBasics/learngo/logparser/testing/report/result.go:30
↓ 2 callersMethodadd
add adds the metrics of another result
GolangBasics/learngo/logparser/functional/result.go:27
↓ 2 callersFunctionaddC
(in <-chan int, c int)
GolangBooks/handsOnSoftwareArch/Chapter06/pipes_filter.go:29
↓ 2 callersFunctionaddFloats
(message string, s ...float64)
GolangBooks/masteringGo/ch05/variadic.go:8
↓ 2 callersMethodaddItem
(int)
GolangDesignPatterns/refactoringGuru/state/state.go:4
↓ 2 callersFunctionadd_popup
* Register a popup menu
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/ui.js:618
↓ 2 callersFunctionadjustBalance
adjust balance method
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter04/avl_tree.go:57
↓ 2 callersFunctionadjust_compose_editfields
(elem)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/ui.js:501
↓ 2 callersFunctionannounce
(g *game, st state)
GolangBasics/learngo/x-tba/tictactoe-experiments/06-refactor/main.go:72
↓ 2 callersMethodarea
()
GolangBasics/GoByExample/020Interfaces.go:9
↓ 2 callersMethodarrive
()
GolangDesignPatterns/refactoringGuru/mediator/freightTrain.go:9
↓ 2 callersMethodarrive
()
GolangDesignPatterns/refactoringGuru/mediator/passengerTrain.go:9
↓ 2 callersFunctionatoi
(input []byte)
GolangBasics/learngo/logparser/functional/field.go:31
↓ 2 callersMethodatoi
(name, val string)
GolangBasics/learngo/logparser/testing/report/result.go:55
↓ 2 callersMethodbottom
(d int)
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/avltree/avltree.go:403
↓ 2 callersMethodbubbleDownIndex
Performs the "bubble down" operation. This is to place the element that is at the index of the heap in its correct place so that the heap maintains th
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/binaryheap/binaryheap.go:126
↓ 2 callersMethodbuildHouse
()
GolangDesignPatterns/refactoringGuru/builder/director.go:17
↓ 2 callersMethodcanArrive
(Train)
GolangDesignPatterns/refactoringGuru/mediator/mediator.go:4
↓ 2 callersFunctioncheck
Custom error message with errors.New()
GolangBooks/masteringGo/ch02/error.go:11
↓ 2 callersMethodcheckAccount
(accountName string)
GolangDesignPatterns/refactoringGuru/facade/account.go:15
↓ 2 callersMethodcheckCode
(incomingCode int)
GolangDesignPatterns/refactoringGuru/facade/securityCode.go:15
↓ 2 callersFunctionclient
The client is ignorant to the algorithm
GolangBooks/handsOnSoftwareArch/Chapter03/strategy.go:41
↓ 2 callersMethodcreateChunkSize
()
GolangBooks/blackhatGo/ch-13/imgInject/pnglib/commands.go:191
↓ 2 callersFunctioncreateIndex
()
GolangBooks/masteringGo/ch03/phoneBook.go:74
↓ 2 callersFunctioncreateIndex
()
GolangBooks/masteringGo/ch04/phoneBook.go:77
↓ 2 callersFunctiondashSplit
(sp string, ports *[]int)
GolangBooks/blackhatGo/ch-2/scanner-port-format/portformat.go:13
↓ 2 callersFunctiondecode
(str)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/common.js:666
↓ 2 callersMethoddeleteCase1
(node *Node)
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/redblacktree/redblacktree.go:463
↓ 2 callersFunctiondescribe
(i interface{})
GolangConcurrency/Concurrency_in_Go_Golang_udemy_course/03-class-codewalk/01-interface/05-empty-interface/main.go:10
↓ 2 callersFunctiondescribe
(i interface{})
GolangConcurrency/Concurrency_in_Go_Golang_udemy_course/03-exercise-solution/01-Interfaces/10-empty-interface/main.go:10
↓ 2 callersFunctiondescribe
(value interface{})
GolangConcurrency/Concurrency_in_Go_Golang_udemy_course/03-exercise/01-Interfaces/10-empty-interface/main.go:10
↓ 2 callersMethoddescribe
()
GolangBasics/GoByExample/021Embeding.go:34
↓ 2 callersFunctiondouble
(nums ...int)
GolangBasics/learngo/advfuncs/01-variadic-funcs/main.go:55
↓ 2 callersFunctiondoubleRotation
double rotation method
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter04/avl_tree.go:41
↓ 2 callersFunctiondoublerot
(c int8, s *Node)
GolangDataStructuresAndAlgorithms/Golang Data Structures/trees/avltree/avltree.go:368
↓ 2 callersFunctionemitter
dummy function for a source
GolangBooks/handsOnSoftwareArch/Chapter06/fan_in_select.go:35
↓ 2 callersFunctionemitter
dummy function for a source
GolangBooks/handsOnSoftwareArch/Chapter06/fan_in.go:39
↓ 2 callersFunctionemitter
(till int)
GolangBooks/handsOnSoftwareArch/Chapter06/pipes_filter.go:7
↓ 2 callersFunctionencodeDecode
(input []byte, key string)
GolangBooks/blackhatGo/ch-13/imgInject/utils/encoders.go:3
↓ 2 callersMethodeof
()
GolangBooks/masteringGo/ch06/ioInterface.go:39
↓ 2 callersFunctionexit
(msg string)
GolangBasics/learngo/concurrency/xxx-monte-carlo/main.go:38
↓ 2 callersFunctionf
(f,g,h,i,k)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/jquery.min.js:34
↓ 2 callersFunctionf2
(arg int)
GolangBasics/GoByExample/022Error.go:27
↓ 2 callersFunctionfilter
(f filterFunc, nums ...int)
GolangBasics/learngo/advfuncs/03-func-to-func/main.go:44
↓ 2 callersFunctionfindElement
findElement method given array and k element
GolangDataStructuresAndAlgorithms/Learn-Data-Structures-and-Algorithms-with-Golang/Chapter01/bruteforce.go:11
↓ 2 callersFunctionfocus_menu_item
(dir)
GolangBooks/blackhatGo/ch-4/credential_harvester/public/index_files/app.js:1730
← previousnext →601–700 of 5,073, ranked by callers