MCPcopy Create free account

hub / github.com/1ambda/golang / types & classes

Types & classes81 in github.com/1ambda/golang

↓ 1 callersTypeAliasMyFloat
a-tour-of-go/src/interfaces/Interfaces_test.go:8
↓ 1 callersTypeAliasMyFloat0
** We can declare a method on non-struct types too */
a-tour-of-go/src/methods/MethodsAndInterfaces_test.go:32
↓ 1 callersTypeAliasResult
concurrency-patterns/13_google_search_v2.1.go:9
↓ 1 callersTypeAliasResult
concurrency-patterns/14_google_search_v3.go:9
↓ 1 callersTypeAliasResult
concurrency-patterns/11_google_search_v1.go:9
↓ 1 callersTypeAliasResult
concurrency-patterns/12_google_search_v2.go:9
↓ 1 callersTypeAliasRomanNumeral
json/roman-numerals.go:12
↓ 1 callersTypeAliasTimestamp
interface/how-to-use-interfaces-in-go.go:111
InterfaceAbser
a-tour-of-go/src/interfaces/Interfaces_test.go:13
InterfaceAnimal
interface/how-to-use-interfaces-in-go.go:83
StructApplication
pointer/things-i-wish-someone-had-told-me-about-go.go:62
StructBalancer
concurrency-is-not-parallelism/load-balancer.go:30
InterfaceCacheItem
pointer/things-i-wish-someone-had-told-me-about-go.go:54
StructCachedUser
pointer/things-i-wish-someone-had-told-me-about-go.go:66
StructCat
interface/how-to-use-interfaces-in-go.go:93
StructCountRequest
go-kit-tutorial/stringsvc2/service/StringService.go:37
StructCountRequest
go-kit-tutorial/stringsvc3/service/Service.go:39
StructCountRequest
go-kit-tutorial/stringsvc/service/StringService.go:37
StructCountResponse
go-kit-tutorial/stringsvc2/service/StringService.go:41
StructCountResponse
go-kit-tutorial/stringsvc3/service/Service.go:43
StructCountResponse
go-kit-tutorial/stringsvc/service/StringService.go:41
StructDate
json/json-interfaces-and-go-generate.go:52
StructDog
interface/how-to-use-interfaces-in-go.go:87
InterfaceI
a-tour-of-go/src/interfaces/Interfaces_test.go:45
TypeAliasIPAddr
a-tour-of-go/src/interfaces/IPAddr_test.go:7
StructInstrumentMiddleware
go-kit-tutorial/stringsvc2/service/InstrumentMiddleware.go:9
StructJavaProgrammer
interface/how-to-use-interfaces-in-go.go:105
StructKey
map/map-in-action.go:9
StructLlama
interface/how-to-use-interfaces-in-go.go:99
StructLoggingMiddleware
go-kit-tutorial/stringsvc2/service/Logging.go:8
StructMessage
concurrency-patterns/03_restoring_sequence.go:9
StructMovie
json/roman-numerals.go:13
StructMyError
* The error type is a built-in interface similar to fmt.Stringer type error interface { Error() string } */
a-tour-of-go/src/interfaces/Errors_test.go:18
StructMyError
understanding-nil/understanding-nil.go:52
TypeAliasNegativeSqrtError
Since `error` is an interface, we can use arbitrary data structures
errors/error-handling-and-go.go:27
InterfaceNetworkError
** * We can use type assertion like * * if nerr, ok := err.(NetworkError); ok && nerr.Temporate() { ... } */
errors/error-handling-and-go.go:38
StructPerson
understanding-nil/understanding-nil.go:43
StructPerson1
json/json-interfaces-and-go-generate.go:122
StructPerson2
json/json-interfaces-and-go-generate.go:90
StructPerson3
json/json-interfaces-and-go-generate.go:54
StructPoint
a-taste-of-go/point.go:7
TypeAliasPool
concurrency-is-not-parallelism/load-balancer.go:28
StructRequest
concurrency-is-not-parallelism/load-balancer.go:16
StructResult
go-for-java-programmers/google-search-frontend.go:19
FuncTypeSearch
func(query string) Result
concurrency-patterns/13_google_search_v2.1.go:10
FuncTypeSearch
func(query string) Result
concurrency-patterns/14_google_search_v3.go:10
FuncTypeSearch
func(query string) Result
concurrency-patterns/11_google_search_v1.go:10
FuncTypeSearch
func(query string) Result
concurrency-patterns/12_google_search_v2.go:10
FuncTypeSearchGen
func(kind string) Search
concurrency-patterns/14_google_search_v3.go:11
TypeAliasShirtSize
json/json-interfaces-and-go-generate.go:11
FuncTypeStringMiddleware
func(StringService) StringService
go-kit-tutorial/stringsvc3/service/Service.go:14
InterfaceStringService
go-kit-tutorial/stringsvc2/service/StringService.go:9
InterfaceStringService
go-kit-tutorial/stringsvc3/service/Service.go:9
InterfaceStringService
go-kit-tutorial/stringsvc/service/StringService.go:9
StructStringServiceImpl
go-kit-tutorial/stringsvc2/service/StringService.go:14
StructStringServiceImpl
go-kit-tutorial/stringsvc3/service/Service.go:16
StructStringServiceImpl
go-kit-tutorial/stringsvc/service/StringService.go:14
InterfaceStringer
a-taste-of-go/point.go:15
InterfaceSummer
understanding-nil/make-zero-value-useful.go:112
StructT
a-tour-of-go/src/interfaces/Interfaces_test.go:49
StructUppercaseRequest
go-kit-tutorial/stringsvc2/service/StringService.go:28
StructUppercaseRequest
go-kit-tutorial/stringsvc3/service/Service.go:30
StructUppercaseRequest
go-kit-tutorial/stringsvc/service/StringService.go:28
StructUppercaseResponse
go-kit-tutorial/stringsvc2/service/StringService.go:32
StructUppercaseResponse
go-kit-tutorial/stringsvc3/service/Service.go:34
StructUppercaseResponse
go-kit-tutorial/stringsvc/service/StringService.go:32
StructUser
pointer/things-i-wish-someone-had-told-me-about-go.go:38
StructVertex
a-tour-of-go/src/types/MoreTypes_test.go:28
StructVertex
a-tour-of-go/src/interfaces/Interfaces_test.go:9
StructVertex
golang-cheat-sheet/map-usage.go:3
StructVertex2
a-tour-of-go/src/types/MoreTypes_test.go:300
StructVertex3
a-tour-of-go/src/methods/MethodsAndInterfaces_test.go:8
StructWorker
Worker keps a channel of reqs, some load tracking data
concurrency-is-not-parallelism/load-balancer.go:22
StructinstrumentMiddleware
go-kit-tutorial/stringsvc3/service/Instrument.go:12
TypeAliasints
understanding-nil/make-zero-value-useful.go:116
StructloggingMiddleware
go-kit-tutorial/stringsvc3/service/Logging.go:9
StructmyErrorString
`error` type is an interface type error interface { Error() string } We can implement our own error type
errors/error-handling-and-go.go:14
StructproxyMiddleware
go-kit-tutorial/stringsvc3/service/Proxy.go:24
Structrot13Reader
a-tour-of-go/src/interfaces/ReaderExercise_test.go:9
StructtemplateData
go-for-java-programmers/google-search-frontend.go:23
Structtree
understanding-nil/make-zero-value-useful.go:184