Search Results for

    Show / Hide Table of Contents

    Class Left<T>

    Represents a standalone left value that can be implicitly converted to an Either.

    Inheritance
    object
    Left<T>
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Akka.Util
    Assembly: Akka.dll
    Syntax
    public class Left<T>
    Type Parameters
    Name Description
    T

    The type of the left value.

    Constructors

    | Edit this page View Source

    Left(T)

    Initializes a new instance of the Left<T> class.

    Declaration
    public Left(T value)
    Parameters
    Type Name Description
    T value

    The left value to contain.

    Properties

    | Edit this page View Source

    IsLeft

    Gets a value indicating whether this instance represents a Left. Always returns true for Left instances.

    Declaration
    public bool IsLeft { get; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    IsRight

    Gets a value indicating whether this instance represents a Right. Always returns false for Left instances.

    Declaration
    public bool IsRight { get; }
    Property Value
    Type Description
    bool
    | Edit this page View Source

    Value

    Gets the left value contained in this instance.

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

    Extension Methods

    ObjectExtensions.IsDefaultForType<T>(T)
    ObjectExtensions.AsOption<T>(T)
    Extensions.AsInstanceOf<T>(object)
    In this article
    • githubEdit this page
    • View Source
    Back to top
    Contribute
    • Project Chat
    • Discussion Forum
    • Source Code
    Support
    • Akka.NET Support Plans
    • Akka.NET Observability Tools
    • Akka.NET Training & Consulting
    Maintained By
    • Petabridge - The Akka.NET Company
    • Learn Akka.NET