map(_:)
Creates a new column by applying a transformation to every element.
Declaration
func map<T>(_ transform: (Column<WrappedElement>.Element) throws -> T?) rethrows -> Column<T>Parameters
- transform:
A transformation closure.
Creates a new column by applying a transformation to every element.
func map<T>(_ transform: (Column<WrappedElement>.Element) throws -> T?) rethrows -> Column<T>A transformation closure.