OrderFlags

public enum OrderFlags : UInt32

Not really an enum, but binary flags to use across languages

  • T

    Undocumented

    Declaration

    Swift

    public typealias T = UInt32
  • Undocumented

    Declaration

    Swift

    public static var byteSize: Int { get }
  • Undocumented

    Declaration

    Swift

    public var value: UInt32 { get }
  • Reverts the order from ascending (default) to descending.

    Declaration

    Swift

    case descending = 1
  • Makes upper case letters (e.g. “Z”) be sorted before lower case letters (e.g. “a”). If not specified, the default is case insensitive for ASCII characters.

    Declaration

    Swift

    case caseSensitive = 2
  • For scalars only: changes the comparison to unsigned (default is signed).

    Declaration

    Swift

    case unsigned = 4
  • null values will be put last. If not specified, by default null values will be put first.

    Declaration

    Swift

    case nullsLast = 8
  • null values should be treated equal to zero (scalars only).

    Declaration

    Swift

    case nullsZero = 16
  • max

    Undocumented

    Declaration

    Swift

    public static var max: OrderFlags { get }
  • min

    Undocumented

    Declaration

    Swift

    public static var min: OrderFlags { get }