dumpArray.dumpArray

Dumps the array within the provided boundries

  1. string dumpArray(size_t start, size_t end, size_t depth)
    template dumpArray(alias array)
    string
    dumpArray
    (
    size_t start
    ,
    size_t end
    ,
    size_t depth = 0
    )
    if (
    isArray!(typeof(array))
    )
  2. string dumpArray()

Parameters

start size_t

beginning index

end size_t

ending index

Return Value

Type: string

the formatted dump text

Meta