Show / Hide Table of Contents

    Class CharArraySetExtensions

    LUCENENET specific extension methods for CharArraySet

    Inheritance
    System.Object
    CharArraySetExtensions
    Namespace: Lucene.Net.Analysis.Util
    Assembly: Lucene.Net.Analysis.Common.dll
    Syntax
    public static class CharArraySetExtensions : object

    Methods

    | Improve this Doc View Source

    Add(CharArraySet, Boolean)

    Add this into the set

    Declaration
    public static bool Add(this CharArraySet set, bool text)
    Parameters
    Type Name Description
    CharArraySet set
    System.Boolean text
    Returns
    Type Description
    System.Boolean

    true if text was added to the set; false if it already existed prior to this call

    | Improve this Doc View Source

    Add(CharArraySet, Byte)

    Add this into the set

    Declaration
    public static bool Add(this CharArraySet set, byte text)
    Parameters
    Type Name Description
    CharArraySet set
    System.Byte text
    Returns
    Type Description
    System.Boolean

    true if text was added to the set; false if it already existed prior to this call

    | Improve this Doc View Source

    Add(CharArraySet, Char)

    Add this into the set

    Declaration
    public static bool Add(this CharArraySet set, char text)
    Parameters
    Type Name Description
    CharArraySet set
    System.Char text
    Returns
    Type Description
    System.Boolean

    true if text was added to the set; false if it already existed prior to this call

    | Improve this Doc View Source

    Add(CharArraySet, Int16)

    Add this into the set

    Declaration
    public static bool Add(this CharArraySet set, short text)
    Parameters
    Type Name Description
    CharArraySet set
    System.Int16 text
    Returns
    Type Description
    System.Boolean

    true if text was added to the set; false if it already existed prior to this call

    | Improve this Doc View Source

    Add(CharArraySet, Int32)

    Add this into the set

    Declaration
    public static bool Add(this CharArraySet set, int text)
    Parameters
    Type Name Description
    CharArraySet set
    System.Int32 text
    Returns
    Type Description
    System.Boolean

    true if text was added to the set; false if it already existed prior to this call

    | Improve this Doc View Source

    Add(CharArraySet, Int64)

    Add this into the set

    Declaration
    public static bool Add(this CharArraySet set, long text)
    Parameters
    Type Name Description
    CharArraySet set
    System.Int64 text
    Returns
    Type Description
    System.Boolean

    true if text was added to the set; false if it already existed prior to this call

    | Improve this Doc View Source

    Add(CharArraySet, SByte)

    Add this into the set

    Declaration
    public static bool Add(this CharArraySet set, sbyte text)
    Parameters
    Type Name Description
    CharArraySet set
    System.SByte text
    Returns
    Type Description
    System.Boolean

    true if text was added to the set; false if it already existed prior to this call

    | Improve this Doc View Source

    Add(CharArraySet, UInt16)

    Add this into the set

    Declaration
    public static bool Add(this CharArraySet set, ushort text)
    Parameters
    Type Name Description
    CharArraySet set
    System.UInt16 text
    Returns
    Type Description
    System.Boolean

    true if text was added to the set; false if it already existed prior to this call

    | Improve this Doc View Source

    Add(CharArraySet, UInt32)

    Add this into the set

    Declaration
    public static bool Add(this CharArraySet set, uint text)
    Parameters
    Type Name Description
    CharArraySet set
    System.UInt32 text
    Returns
    Type Description
    System.Boolean

    true if text was added to the set; false if it already existed prior to this call

    | Improve this Doc View Source

    Add(CharArraySet, UInt64)

    Add this into the set

    Declaration
    public static bool Add(this CharArraySet set, ulong text)
    Parameters
    Type Name Description
    CharArraySet set
    System.UInt64 text
    Returns
    Type Description
    System.Boolean

    true if text was added to the set; false if it already existed prior to this call

    | Improve this Doc View Source

    Contains(CharArraySet, Boolean)

    true if the is in the set

    Declaration
    public static bool Contains(this CharArraySet set, bool text)
    Parameters
    Type Name Description
    CharArraySet set
    System.Boolean text
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    Contains(CharArraySet, Byte)

    true if the is in the set

    Declaration
    public static bool Contains(this CharArraySet set, byte text)
    Parameters
    Type Name Description
    CharArraySet set
    System.Byte text
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    Contains(CharArraySet, Char)

    true if the is in the set

    Declaration
    public static bool Contains(this CharArraySet set, char text)
    Parameters
    Type Name Description
    CharArraySet set
    System.Char text
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    Contains(CharArraySet, Int16)

    true if the is in the set

    Declaration
    public static bool Contains(this CharArraySet set, short text)
    Parameters
    Type Name Description
    CharArraySet set
    System.Int16 text
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    Contains(CharArraySet, Int32)

    true if the is in the set

    Declaration
    public static bool Contains(this CharArraySet set, int text)
    Parameters
    Type Name Description
    CharArraySet set
    System.Int32 text
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    Contains(CharArraySet, Int64)

    true if the is in the set

    Declaration
    public static bool Contains(this CharArraySet set, long text)
    Parameters
    Type Name Description
    CharArraySet set
    System.Int64 text
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    Contains(CharArraySet, SByte)

    true if the is in the set

    Declaration
    public static bool Contains(this CharArraySet set, sbyte text)
    Parameters
    Type Name Description
    CharArraySet set
    System.SByte text
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    Contains(CharArraySet, UInt16)

    true if the is in the set

    Declaration
    public static bool Contains(this CharArraySet set, ushort text)
    Parameters
    Type Name Description
    CharArraySet set
    System.UInt16 text
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    Contains(CharArraySet, UInt32)

    true if the is in the set

    Declaration
    public static bool Contains(this CharArraySet set, uint text)
    Parameters
    Type Name Description
    CharArraySet set
    System.UInt32 text
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    Contains(CharArraySet, UInt64)

    true if the is in the set

    Declaration
    public static bool Contains(this CharArraySet set, ulong text)
    Parameters
    Type Name Description
    CharArraySet set
    System.UInt64 text
    Returns
    Type Description
    System.Boolean
    | Improve this Doc View Source

    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

    true if this CharArraySet changed as a result of the call

    | Improve this Doc View Source

    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

    true if this CharArraySet changed as a result of the call

    | Improve this Doc View Source

    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

    true if this CharArraySet changed as a result of the call

    | Improve this Doc View Source

    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

    true if this CharArraySet changed as a result of the call

    | Improve this Doc View Source

    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

    true if this CharArraySet changed as a result of the call

    | Improve this Doc View Source

    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

    true if this CharArraySet changed as a result of the call

    | Improve this Doc View Source

    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

    true if this CharArraySet changed as a result of the call

    | Improve this Doc View Source

    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

    true if this CharArraySet changed as a result of the call

    | Improve this Doc View Source

    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

    true if this CharArraySet changed as a result of the call

    • Improve this Doc
    • View Source
    Back to top Copyright © 2020 Licensed to the Apache Software Foundation (ASF)