Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Class InputOutput<T>

    Holds one input/output pair.

    Inheritance
    object
    InputOutput<T>
    Implements
    IComparable<InputOutput<T>>
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Lucene.Net.Util.Fst
    Assembly: Lucene.Net.TestFramework.dll
    Syntax
    public class InputOutput<T> : IComparable<InputOutput<T>> where T : class
    Type Parameters
    Name Description
    T

    Constructors

    InputOutput(Int32sRef, T)

    Holds one input/output pair.

    Declaration
    public InputOutput(Int32sRef input, T output)
    Parameters
    Type Name Description
    Int32sRef input
    T output

    Properties

    Input

    Holds one input/output pair.

    Declaration
    public Int32sRef Input { get; }
    Property Value
    Type Description
    Int32sRef

    Output

    Holds one input/output pair.

    Declaration
    public T Output { get; }
    Property Value
    Type Description
    T

    Methods

    CompareTo(InputOutput<T>)

    Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.

    Declaration
    public virtual int CompareTo(InputOutput<T> other)
    Parameters
    Type Name Description
    InputOutput<T> other

    An object to compare with this instance.

    Returns
    Type Description
    int

    A value that indicates the relative order of the objects being compared. The return value has these meanings:

    Value Meaning
    Less than zero This instance precedes other in the sort order.
    Zero This instance occurs in the same position in the sort order as other.
    Greater than zero This instance follows other in the sort order.

    Implements

    IComparable<T>
    Back to top Copyright © 2024 The Apache Software Foundation, Licensed under the Apache License, Version 2.0
    Apache Lucene.Net, Lucene.Net, Apache, the Apache feather logo, and the Apache Lucene.Net project logo are trademarks of The Apache Software Foundation.
    All other marks mentioned may be trademarks or registered trademarks of their respective owners.