CharArraySet

constructor(startSize: Int, ignoreCase: Boolean)

Create set with enough capacity to hold startSize terms

Parameters

startSize

the initial capacity

ignoreCase

false if and only if the set should be case sensitive otherwise true.


constructor(c: MutableCollection<Any>, ignoreCase: Boolean)

Creates a set from a Collection of objects.

Parameters

c

a collection whose elements to be placed into the set

ignoreCase

false if and only if the set should be case sensitive otherwise true.