Declaration

func setUnicodesFast(_ unicodes: NSOrderedSet?)

Declaration

- (void) setUnicodesFast:(NSOrderedSet *) unicodes;

Declaration

setUnicodesFast_(unicodes: NSOrderedSet)

Parameters

unicodes

The Unicode code points as hexadecimal strings.

Discussion

This method does not register undo or update glyph lookup in the containing font. The caller is responsible for supplying valid Unicode code point strings. Use unicodes for general assignment.

See Also

Unicode and Characters

  • The Unicode code points associated with the glyph, as an ordered set of uppercase hexadecimal strings.

  • The Unicode scalars associated with the glyph in their assignment order.

  • The number of associated Unicode code points.

  • The first Unicode code point associated with the glyph, as an uppercase hexadecimal string.

  • The first associated Unicode value as a scalar, or nil when it is missing or invalid.

  • The numeric value of the first associated Unicode code point, or 0 when there is none.

  • The character for the first associated Unicode code point, or an empty string when this convenience API cannot represent it.

  • Adds a Unicode code point while preserving the existing code points.

  • Adds a Unicode scalar while preserving the existing assignments.

  • Removes a Unicode code point while preserving the order of the remaining code points.

  • Removes a Unicode scalar while preserving the order of the remaining assignments.

  • Checks whether a string uses the uppercase hexadecimal syntax for a Unicode code point.

  • The Unicode string represented by the glyph’s character composition.

See Also

Unicode and Characters