contains

fun contains(codePoint: Int): Boolean(source)

Tests whether the given codePoint is contained within this UnicodeSet.

This function has a runtime complexity of O(log n), where n = len of ranges.

Return

True if the code point is contained within this UnicodeSet, false otherwise.

Parameters

codePoint

The code point to test.