Matrix

public struct Matrix<Element>

Undocumented

  • Undocumented

    Declaration

    Swift

    public var elements: [Element]
  • Undocumented

    Declaration

    Swift

    public let rows: Int
  • Undocumented

    Declaration

    Swift

    public let columns: Int
  • Undocumented

    Declaration

    Swift

    public init(_ elements: [Element], rows: Int, columns: Int)
  • Undocumented

    Declaration

    Swift

    public init?(_ elements: [Element], rows: Int)
  • Undocumented

    Declaration

    Swift

    public init?(_ elements: [Element], columns: Int = 1)