Class InputOutput<T>
Holds one input/output pair.
Inheritance
System.Object
InputOutput<T>
Implements
System.IComparable<InputOutput<T>>
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Lucene.Net.Util.Fst
Assembly: Lucene.Net.TestFramework.dll
Syntax
public class InputOutput<T> : IComparable<InputOutput<T>>
Type Parameters
Name | Description |
---|---|
T |
Constructors
| Improve this Doc View SourceInputOutput(Int32sRef, T)
Declaration
public InputOutput(Int32sRef input, T output)
Parameters
Type | Name | Description |
---|---|---|
Int32sRef | input | |
T | output |
Properties
| Improve this Doc View SourceInput
Declaration
public Int32sRef Input { get; }
Property Value
Type | Description |
---|---|
Int32sRef |
Output
Declaration
public T Output { get; }
Property Value
Type | Description |
---|---|
T |
Methods
| Improve this Doc View SourceCompareTo(InputOutput<T>)
Declaration
public virtual int CompareTo(InputOutput<T> other)
Parameters
Type | Name | Description |
---|---|---|
InputOutput<T> | other |
Returns
Type | Description |
---|---|
System.Int32 |
Implements
System.IComparable<T>