Enum PeekMode

Behavior of the Row.peek() method for arrays/strings

enum PeekMode : int { ... }

Enum members

NameDescription
copy Return a copy of the data into a new array/string. The copy is safe to use after stepping to the next row.
slice Return a slice of the data. The slice can point to invalid data after stepping to the next row.