MCPcopy Create free account

hub / github.com/alaingilbert/agl / functions

Functions2,276 in github.com/alaingilbert/agl

FunctionAglStringIndex
(s, substr string)
pkg/agl/core/core.go:2092
FunctionAglStringInt
(s string)
pkg/agl/core/core.go:2168
FunctionAglStringIsEmpty
(s string)
pkg/agl/core/core.go:2035
FunctionAglStringLastIndex
(s, substr string)
pkg/agl/core/core.go:2100
FunctionAglStringLen
(s string)
pkg/agl/core/core.go:1990
FunctionAglStringLines
(s string)
pkg/agl/core/core.go:2011
FunctionAglStringLowercased
(s string)
pkg/agl/core/core.go:2140
FunctionAglStringRepeat
(s string, count int)
pkg/agl/core/core.go:2112
FunctionAglStringReplace
(s string, old, new string, n int)
pkg/agl/core/core.go:2023
FunctionAglStringReplaceAll
(s string, old, new string)
pkg/agl/core/core.go:2027
FunctionAglStringSplit
(s string, sep string)
pkg/agl/core/core.go:2132
FunctionAglStringSplitAfter
(s string, sep string)
pkg/agl/core/core.go:2136
FunctionAglStringTrim
(s, cutset string)
pkg/agl/core/core.go:2116
FunctionAglStringTrimLeft
(s, cutset string)
pkg/agl/core/core.go:2120
FunctionAglStringTrimPrefix
(s string, prefix string)
pkg/agl/core/core.go:2039
FunctionAglStringTrimRight
(s, cutset string)
pkg/agl/core/core.go:2124
FunctionAglStringTrimSpace
(s string)
pkg/agl/core/core.go:2031
FunctionAglStringTrimSuffix
(s string, suffix string)
pkg/agl/core/core.go:2043
FunctionAglStringU16
(s string)
pkg/agl/core/core.go:2231
FunctionAglStringU32
(s string)
pkg/agl/core/core.go:2240
FunctionAglStringU64
(s string)
pkg/agl/core/core.go:2249
FunctionAglStringU8
(s string)
pkg/agl/core/core.go:2222
FunctionAglStringUint
(s string)
pkg/agl/core/core.go:2213
FunctionAglStringUppercased
(s string)
pkg/agl/core/core.go:2144
FunctionAglStringZFill
(s string, width int)
pkg/agl/core/core.go:2016
FunctionAglTypeAssert
(v any)
pkg/agl/core/core.go:334
FunctionAglVecAllSatisfy
(a []T, f func(T) bool)
pkg/agl/core/core.go:242
FunctionAglVecAny
(a []T, f func(T) bool)
pkg/agl/core/core.go:254
FunctionAglVecClear
AglVecClear ...
pkg/agl/core/core.go:2364
FunctionAglVecClone
AglVecClone ...
pkg/agl/core/core.go:2359
FunctionAglVecContains
(a []T, e T)
pkg/agl/core/core.go:246
FunctionAglVecContainsWhere
(a []T, p func(T) bool)
pkg/agl/core/core.go:250
FunctionAglVecDescription
(a []T)
pkg/agl/core/core.go:2293
FunctionAglVecEqFilter
(v AglVecEq[T])
experiments/equatable_vec/main.go:47
FunctionAglVecFilter
(a []T, f func(T) bool)
pkg/agl/core/core.go:200
FunctionAglVecFilterMap
(a []T, f func(T) Option[R])
pkg/agl/core/core.go:189
FunctionAglVecFind
(a []T, f func(T) bool)
pkg/agl/core/core.go:343
FunctionAglVecFirstIndex
(a []T, e T)
pkg/agl/core/core.go:224
FunctionAglVecFirstIndexWhere
(a []T, p func(T) bool)
pkg/agl/core/core.go:233
FunctionAglVecIn
(a []T, v T)
pkg/agl/core/core.go:323
FunctionAglVecIndices
AglVecIndices ...
pkg/agl/core/core.go:2369
FunctionAglVecInsert
AglVecInsert ...
pkg/agl/core/core.go:2349
FunctionAglVecJoined
(a []string, s string)
pkg/agl/core/core.go:2285
FunctionAglVecMap
(a []T, f func(T) R)
pkg/agl/core/core.go:185
FunctionAglVecPop
AglVecPop removes the last element from a vector and returns it, or None if it is empty.
pkg/agl/core/core.go:2378
FunctionAglVecPopIf
AglVecPopIf Removes and returns the last element from a vector if the predicate returns true, or None if the predicate returns false or the vector is
pkg/agl/core/core.go:2389
FunctionAglVecPush
(a *[]T, els ...T)
pkg/agl/core/core.go:2316
FunctionAglVecPushFront
AglVecPushFront ...
pkg/agl/core/core.go:2321
FunctionAglVecReduceInto
(a []T, acc R, f func(*R, T) AglVoid)
pkg/agl/core/core.go:262
FunctionAglVecRemove
AglVecRemove ...
pkg/agl/core/core.go:2354
FunctionAglVecRemoveFirst
(a *[]T)
pkg/agl/core/core.go:2335
FunctionAglVecSorted
(a []E)
pkg/agl/core/core.go:2274
FunctionAglVecSortedBy
(a []E, f func(a, b E) bool)
pkg/agl/core/core.go:2278
FunctionAglVecString
(a []byte)
pkg/agl/core/core.go:2289
FunctionAglVecSum
(a []T)
pkg/agl/core/core.go:2297
FunctionAglVecSwap
AglVecSwap ...
pkg/agl/core/core.go:2344
FunctionAglVecWith
(a *[]T, i int, clb func(*T) AglVoid)
pkg/agl/core/core.go:2310
FunctionAglVec__ADD
(a, b []T)
pkg/agl/core/core.go:193
FunctionAglWrapNative1
(err error)
pkg/agl/core/core.go:48
FunctionAglWrapNative2
(v1 T, err error)
pkg/agl/core/core.go:55
FunctionAglWrapNativeOpt
(v1 T, ok bool)
pkg/agl/core/core.go:62
MethodAllSatisfy
(pred func(T) bool)
pkg/agl/core/core.go:1265
MethodBase
Base returns the minimum base offset that must be provided to [FileSet.AddFile] when adding the next file.
pkg/token/position.go:445
FunctionCast
Cast ...
pkg/utils/utils.go:19
FunctionCast
Cast ...
pkg/agl/utils.go:136
FunctionCast
Cast ...
language_server/main.go:278
FunctionCastInto
CastInto ...
pkg/utils/utils.go:43
FunctionCastInto
CastInto ...
pkg/agl/utils.go:187
MethodClone
()
pkg/agl/core/core.go:361
MethodClone
()
pkg/agl/core/core.go:856
MethodComments
Comments returns the list of comment groups in the comment map. The result is sorted in source order.
pkg/ast/commentmap.go:253
MethodConcrete
Concrete makes a CustomType concrete by delegating to the wrapped type if it supports Concrete
pkg/types/types.go:189
MethodConcrete
(typs []Type)
pkg/types/types.go:469
MethodConcrete
(typs []Type)
pkg/types/types.go:480
MethodContains
(e H)
pkg/agl/core/core.go:1182
FunctionDefault
Default ...
pkg/agl/utils.go:228
MethodDefineFnNative
(name string, fnStr string, fset *token.FileSet)
pkg/agl/env.go:1253
FunctionDeref
Deref generic deref return the zero value if v is nil
pkg/agl/utils.go:205
MethodEmit
(s string)
pkg/agl/codegen.go:1551
MethodEnd
()
pkg/ast/ast.go:75
MethodEnd
()
pkg/ast/ast.go:84
MethodEnd
()
pkg/ast/ast.go:220
MethodEnd
()
pkg/ast/ast.go:253
MethodEnd
()
pkg/ast/ast.go:540
MethodEnd
()
pkg/ast/ast.go:544
MethodEnd
()
pkg/ast/ast.go:549
MethodEnd
()
pkg/ast/ast.go:555
MethodEnd
()
pkg/ast/ast.go:561
MethodEnd
()
pkg/ast/ast.go:567
MethodEnd
()
pkg/ast/ast.go:573
MethodEnd
()
pkg/ast/ast.go:579
MethodEnd
()
pkg/ast/ast.go:585
MethodEnd
()
pkg/ast/ast.go:591
MethodEnd
()
pkg/ast/ast.go:597
MethodEnd
()
pkg/ast/ast.go:608
MethodEnd
()
pkg/ast/ast.go:618
MethodEnd
()
pkg/ast/ast.go:630
MethodEnd
()
pkg/ast/ast.go:640
MethodEnd
()
pkg/ast/ast.go:650
MethodEnd
()
pkg/ast/ast.go:749
← previousnext →901–1,000 of 2,276, ranked by callers