../libs/arr_ref/arr_ref

  Source   Edit

Types

ArrRef[T] = ref object
  byte_len: int
  when not defined(release):
    arr_ptr
  arr: UncheckedArray[T]
  Source   Edit

Procs

proc `$`[T](a: ArrRef[T]): string
  Source   Edit
proc `[]=`[T](a: ArrRef[T]; i: Natural; v: T)
  Source   Edit
proc `[]`[T](a: ArrRef[T]; i: Natural): var T
  Source   Edit
proc concat[T](arrs: seq[ArrRef[T]]): ArrRef[T]
  Source   Edit
proc concat[T](arrs: varargs[ArrRef[T]]): ArrRef[T]
  Source   Edit
proc fill[T](a: ArrRef[T]; v: T)
  Source   Edit
proc hash[T](arr: ArrRef[T]): Hash
  Source   Edit
proc newArrRef[T; U: not T](s: seq[U]): ArrRef[T]
  Source   Edit
proc newArrRef[T](s: seq[T] | ArrRef[T] | openArray[T]): ArrRef[T]
  Source   Edit
proc newArrRef[T](size: Natural): ArrRef[T]
  Source   Edit
proc newArrRefWith[T](size: Natural; v: T): ArrRef[T]
  Source   Edit
proc newSeq[T: not ref](a: ArrRef[T]): var seq[T]
  Source   Edit

Iterators

iterator items[T](a: ArrRef[T]): T
  Source   Edit
iterator mitems[T](a: ArrRef[T]): var T
  Source   Edit
iterator mpairs[T](a: ArrRef[T]): tuple[key: int, val: var T]
  Source   Edit
iterator pairs[T](a: ArrRef[T]): tuple[key: int, val: T]
  Source   Edit

Templates

template `&`[T, U](a: ArrRef[T]; b: ArrRef[U]): ArrRef[T]
  Source   Edit
template `[]=`[T](a: ArrRef[T]; i: BackwardsIndex; v: T)
  Source   Edit
template `[]`[T](a: ArrRef[T]; i: BackwardsIndex): T
  Source   Edit
template `[]`[T](a: ArrRef[T]; s: Slice[int]): var SliceMem[T]
  Source   Edit
template byteLen[T](a: ArrRef[T]): Natural
  Source   Edit
template high[T](a: ArrRef[T]): int
  Source   Edit
template len[T](a: ArrRef[T]): Natural
  Source   Edit
template low[T](a: ArrRef[T]): Natural
  Source   Edit
template newArrRef[T](s: string): ArrRef[T]
  Source   Edit
template to[T](a: ArrRef[T]; U: untyped): untyped
  Source   Edit
template toPointer[T](a: ArrRef[T]): pointer
  Source   Edit