CollatorOptions

public struct CollatorOptions : Codable, Equatable, ExpressionArgumentConvertible

Undocumented

  • Whether comparison option is case sensitive.

    Declaration

    Swift

    public var caseSensitive: Bool?
  • Whether the comparison operation is diacritic sensitive

    Declaration

    Swift

    public var diacriticSensitive: Bool?
  • The locale argument specifies the IETF language tag of the locale to use. If none is provided, the default locale is used.

    Declaration

    Swift

    public var locale: String?
  • Undocumented

    Declaration

    Swift

    public var expressionArguments: [Expression.Argument] { get }
  • Undocumented

    Declaration

    Swift

    public init(caseSensitive: Bool?, diacriticSensitive: Bool?, locale: String?)