Index
Modules:
elnim
.
API symbols
assoc:
elnim: assoc[T](alist: openArray[seq[T]]; key: T; testproc: proc (x, y: T): bool = equal): seq[T]
car:
elnim: car[T](s: openArray[T]): T
cdr:
elnim: cdr[T](s: openArray[T]): seq[T]
delete:
elnim: delete[T](s: openArray[T]; el: T; testproc: proc (x, y: T): bool = equal): seq[T]
ifLet:
elnim: ifLet(letExpr: untyped; trueCond: untyped; falseCond: untyped = newEmptyNode()): untyped
isValid:
elnim: isValid[T](x: T): bool
mapconcat:
elnim: mapconcat[T](s: openArray[T]; sep = " "; op: proc (x: T): string = dollar): string
member:
elnim: member[T](el: T; s: openArray[T]): bool