Search Results for

    Show / Hide Table of Contents

    Class Lambda

    Provides methods to create lambdas.

    Inheritance
    System.Object
    Lambda
    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.ToString()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: Gremlin.Net.Process.Traversal
    Assembly: cs.temp.dll.dll
    Syntax
    public static class Lambda

    Methods

    Groovy(String)

    Creates a new Groovy lambda.

    Declaration
    public static ILambda Groovy(string expression)
    Parameters
    Type Name Description
    System.String expression

    The lambda expression.

    Returns
    Type Description
    ILambda

    The created lambda.

    Groovy(String, Int32)

    Creates a new Groovy lambda with the specified number of lambda arguments.

    Declaration
    public static ILambda Groovy(string expression, int arguments)
    Parameters
    Type Name Description
    System.String expression

    The lambda expression.

    System.Int32 arguments

    The number of lambda arguments.

    Returns
    Type Description
    ILambda

    The created lambda.

    Python(String)

    Creates a new Python lambda.

    Declaration
    public static ILambda Python(string expression)
    Parameters
    Type Name Description
    System.String expression

    The lambda expression.

    Returns
    Type Description
    ILambda

    The created lambda.

    In This Article
    Back to top Copyright © 2018 The Apache Software Foundation