Contents

subscript(_:)

Returns a slice of the column by selecting elements with a collection of Booleans.

Declaration

subscript<C>(mask: C) -> AnyColumnSlice where C : Collection, C.Element == Bool { get }

Parameters

  • mask:

    A collection of Booleans. The method selects the column’s elements that correspond to the true elements in the collection.