Skip to content

Row

[Source]

A single row from a query result. Contains an ordered array of Field values corresponding to the columns in the RowDescription.

class val Row is
  Equatable[Row val] ref

Implements


Constructors

create

[Source]

new val create(
  fields': Array[Field val] val)
: Row val^

Parameters

Returns


Public fields

let fields: Array[Field val] val

[Source]


Public Functions

eq

[Source]

Two rows are equal when they have the same number of fields and each corresponding pair of fields is equal. Field order matters: the same fields in a different order are not equal.

fun box eq(
  that: Row val)
: Bool val

Parameters

  • that: Row val

Returns


ne

[Source]

fun box ne(
  that: Row val)
: Bool val

Parameters

  • that: Row val

Returns