icu4x
    Preparing search index...

    Class CodePointSetBuilder

    Index

    Constructors

    Accessors

    • get ffiValue(): number

      Returns number

    • get isEmpty(): boolean

      Returns whether this set is empty

      See the Rust documentation for is_empty for more information.

      Returns boolean

    Methods

    • Add a single character to the set

      See the Rust documentation for add_char for more information.

      Parameters

      • ch: number

      Returns void

    • Add an inclusive range of characters to the set

      See the Rust documentation for add_range for more information.

      Parameters

      • start: number
      • end: number

      Returns void

    • Complements this set

      (Elements in this set are removed and vice versa)

      See the Rust documentation for complement for more information.

      Returns void

    • Complement a single character to the set

      (Characters which are in this set are removed and vice versa)

      See the Rust documentation for complement_char for more information.

      Parameters

      • ch: number

      Returns void

    • Complement an inclusive range of characters from the set

      (Characters which are in this set are removed and vice versa)

      See the Rust documentation for complement_range for more information.

      Parameters

      • start: number
      • end: number

      Returns void

    • Remove a single character to the set

      See the Rust documentation for remove_char for more information.

      Parameters

      • ch: number

      Returns void

    • Remove an inclusive range of characters from the set

      See the Rust documentation for remove_range for more information.

      Parameters

      • start: number
      • end: number

      Returns void

    • Removes all elements from the set except a single character

      See the Rust documentation for retain_char for more information.

      Parameters

      • ch: number

      Returns void

    • Removes all elements from the set except an inclusive range of characters f

      See the Rust documentation for retain_range for more information.

      Parameters

      • start: number
      • end: number

      Returns void