Class CharArraySetExtensions
LUCENENET specific extension methods for CharArraySet
Inheritance
Namespace: Lucene.Net.Analysis.Util
Assembly: Lucene.Net.Analysis.Common.dll
Syntax
public static class CharArraySetExtensions : object
Methods
| Improve this Doc View SourceAdd(CharArraySet, Boolean)
Add this
Declaration
public static bool Add(this CharArraySet set, bool text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.Boolean | text |
Returns
Type | Description |
---|---|
System.Boolean |
|
Add(CharArraySet, Byte)
Add this
Declaration
public static bool Add(this CharArraySet set, byte text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.Byte | text |
Returns
Type | Description |
---|---|
System.Boolean |
|
Add(CharArraySet, Char)
Add this
Declaration
public static bool Add(this CharArraySet set, char text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.Char | text |
Returns
Type | Description |
---|---|
System.Boolean |
|
Add(CharArraySet, Int16)
Add this
Declaration
public static bool Add(this CharArraySet set, short text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.Int16 | text |
Returns
Type | Description |
---|---|
System.Boolean |
|
Add(CharArraySet, Int32)
Add this
Declaration
public static bool Add(this CharArraySet set, int text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.Int32 | text |
Returns
Type | Description |
---|---|
System.Boolean |
|
Add(CharArraySet, Int64)
Add this
Declaration
public static bool Add(this CharArraySet set, long text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.Int64 | text |
Returns
Type | Description |
---|---|
System.Boolean |
|
Add(CharArraySet, SByte)
Add this
Declaration
public static bool Add(this CharArraySet set, sbyte text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.SByte | text |
Returns
Type | Description |
---|---|
System.Boolean |
|
Add(CharArraySet, UInt16)
Add this
Declaration
public static bool Add(this CharArraySet set, ushort text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.UInt16 | text |
Returns
Type | Description |
---|---|
System.Boolean |
|
Add(CharArraySet, UInt32)
Add this
Declaration
public static bool Add(this CharArraySet set, uint text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.UInt32 | text |
Returns
Type | Description |
---|---|
System.Boolean |
|
Add(CharArraySet, UInt64)
Add this
Declaration
public static bool Add(this CharArraySet set, ulong text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.UInt64 | text |
Returns
Type | Description |
---|---|
System.Boolean |
|
Contains(CharArraySet, Boolean)
true
if the
Declaration
public static bool Contains(this CharArraySet set, bool text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.Boolean | text |
Returns
Type | Description |
---|---|
System.Boolean |
Contains(CharArraySet, Byte)
true
if the
Declaration
public static bool Contains(this CharArraySet set, byte text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.Byte | text |
Returns
Type | Description |
---|---|
System.Boolean |
Contains(CharArraySet, Char)
true
if the
Declaration
public static bool Contains(this CharArraySet set, char text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.Char | text |
Returns
Type | Description |
---|---|
System.Boolean |
Contains(CharArraySet, Int16)
true
if the
Declaration
public static bool Contains(this CharArraySet set, short text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.Int16 | text |
Returns
Type | Description |
---|---|
System.Boolean |
Contains(CharArraySet, Int32)
true
if the
Declaration
public static bool Contains(this CharArraySet set, int text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.Int32 | text |
Returns
Type | Description |
---|---|
System.Boolean |
Contains(CharArraySet, Int64)
true
if the
Declaration
public static bool Contains(this CharArraySet set, long text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.Int64 | text |
Returns
Type | Description |
---|---|
System.Boolean |
Contains(CharArraySet, SByte)
true
if the
Declaration
public static bool Contains(this CharArraySet set, sbyte text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.SByte | text |
Returns
Type | Description |
---|---|
System.Boolean |
Contains(CharArraySet, UInt16)
true
if the
Declaration
public static bool Contains(this CharArraySet set, ushort text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.UInt16 | text |
Returns
Type | Description |
---|---|
System.Boolean |
Contains(CharArraySet, UInt32)
true
if the
Declaration
public static bool Contains(this CharArraySet set, uint text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.UInt32 | text |
Returns
Type | Description |
---|---|
System.Boolean |
Contains(CharArraySet, UInt64)
true
if the
Declaration
public static bool Contains(this CharArraySet set, ulong text)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | |
System.UInt64 | text |
Returns
Type | Description |
---|---|
System.Boolean |
UnionWith(CharArraySet, IEnumerable<Byte>)
Modifies the current CharArraySet to contain all elements that are present in itself, the specified collection, or both.
Declaration
public static bool UnionWith(this CharArraySet set, IEnumerable<byte> other)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | this CharArraySet |
IEnumerable<System.Byte> | other | The collection whose elements should be merged into the CharArraySet. |
Returns
Type | Description |
---|---|
System.Boolean |
|
UnionWith(CharArraySet, IEnumerable<Char>)
Modifies the current CharArraySet to contain all elements that are present in itself, the specified collection, or both.
Declaration
public static bool UnionWith(this CharArraySet set, IEnumerable<char> other)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | this CharArraySet |
IEnumerable<System.Char> | other | The collection whose elements should be merged into the CharArraySet. |
Returns
Type | Description |
---|---|
System.Boolean |
|
UnionWith(CharArraySet, IEnumerable<Int16>)
Modifies the current CharArraySet to contain all elements that are present in itself, the specified collection, or both.
Declaration
public static bool UnionWith(this CharArraySet set, IEnumerable<short> other)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | this CharArraySet |
IEnumerable<System.Int16> | other | The collection whose elements should be merged into the CharArraySet. |
Returns
Type | Description |
---|---|
System.Boolean |
|
UnionWith(CharArraySet, IEnumerable<Int32>)
Modifies the current CharArraySet to contain all elements that are present in itself, the specified collection, or both.
Declaration
public static bool UnionWith(this CharArraySet set, IEnumerable<int> other)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | this CharArraySet |
IEnumerable<System.Int32> | other | The collection whose elements should be merged into the CharArraySet. |
Returns
Type | Description |
---|---|
System.Boolean |
|
UnionWith(CharArraySet, IEnumerable<Int64>)
Modifies the current CharArraySet to contain all elements that are present in itself, the specified collection, or both.
Declaration
public static bool UnionWith(this CharArraySet set, IEnumerable<long> other)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | this CharArraySet |
IEnumerable<System.Int64> | other | The collection whose elements should be merged into the CharArraySet. |
Returns
Type | Description |
---|---|
System.Boolean |
|
UnionWith(CharArraySet, IEnumerable<SByte>)
Modifies the current CharArraySet to contain all elements that are present in itself, the specified collection, or both.
Declaration
public static bool UnionWith(this CharArraySet set, IEnumerable<sbyte> other)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | this CharArraySet |
IEnumerable<System.SByte> | other | The collection whose elements should be merged into the CharArraySet. |
Returns
Type | Description |
---|---|
System.Boolean |
|
UnionWith(CharArraySet, IEnumerable<UInt16>)
Modifies the current CharArraySet to contain all elements that are present in itself, the specified collection, or both.
Declaration
public static bool UnionWith(this CharArraySet set, IEnumerable<ushort> other)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | this CharArraySet |
IEnumerable<System.UInt16> | other | The collection whose elements should be merged into the CharArraySet. |
Returns
Type | Description |
---|---|
System.Boolean |
|
UnionWith(CharArraySet, IEnumerable<UInt32>)
Modifies the current CharArraySet to contain all elements that are present in itself, the specified collection, or both.
Declaration
public static bool UnionWith(this CharArraySet set, IEnumerable<uint> other)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | this CharArraySet |
IEnumerable<System.UInt32> | other | The collection whose elements should be merged into the CharArraySet. |
Returns
Type | Description |
---|---|
System.Boolean |
|
UnionWith(CharArraySet, IEnumerable<UInt64>)
Modifies the current CharArraySet to contain all elements that are present in itself, the specified collection, or both.
Declaration
public static bool UnionWith(this CharArraySet set, IEnumerable<ulong> other)
Parameters
Type | Name | Description |
---|---|---|
CharArraySet | set | this CharArraySet |
IEnumerable<System.UInt64> | other | The collection whose elements should be merged into the CharArraySet. |
Returns
Type | Description |
---|---|
System.Boolean |
|