Search Results for

    Show / Hide Table of Contents

    Class ComparisonFunc

    Comparison function modes

    Inheritance
    System.Object
    ComparisonFunc
    Namespace: FlaxEngine
    Assembly: FlaxEngine.CSharp.dll
    Syntax
    [Unmanaged]
    public sealed class ComparisonFunc : Enum

    Fields

    Always

    Always pass the comparison.

    Declaration
    public const ComparisonFunc Always
    Field Value
    ComparisonFunc

    Equal

    If the source data is equal to the destination data, the comparison passes.

    Declaration
    public const ComparisonFunc Equal
    Field Value
    ComparisonFunc

    Greater

    If the source data is greater than the destination data, the comparison passes.

    Declaration
    public const ComparisonFunc Greater
    Field Value
    ComparisonFunc

    GreaterEqual

    If the source data is greater than or equal to the destination data, the comparison passes.

    Declaration
    public const ComparisonFunc GreaterEqual
    Field Value
    ComparisonFunc

    Less

    If the source data is less than the destination data, the comparison passes.

    Declaration
    public const ComparisonFunc Less
    Field Value
    ComparisonFunc

    LessEqual

    If the source data is less than or equal to the destination data, the comparison passes.

    Declaration
    public const ComparisonFunc LessEqual
    Field Value
    ComparisonFunc

    Never

    Never pass the comparison.

    Declaration
    public const ComparisonFunc Never
    Field Value
    ComparisonFunc

    NotEqual

    If the source data is not equal to the destination data, the comparison passes.

    Declaration
    public const ComparisonFunc NotEqual
    Field Value
    ComparisonFunc

    value__

    Declaration
    public byte value__
    Field Value
    System.Byte

    Extension Methods

    Extensions.ReflectiveCompare<T>(T, T)
    Extensions.RawClone<T>(T)
    In This Article
    Back to top Copyright © 2012-2024 Wojciech Figat