Search Results for

    Show / Hide Table of Contents

    Interface CanComputeProduct<TOther, TResult>

    Supports computing the product of the current instance and another value.

    Namespace: Microsoft.ML.Probabilistic.Distributions
    Assembly: Microsoft.ML.Probabilistic.dll
    Syntax
    [Quality(QualityBand.Experimental)]
    public interface CanComputeProduct<in TOther, out TResult>
    Type Parameters
    Name Description
    TOther

    The type of the second multiplier.

    TResult

    The type of the product.

    Remarks

    Typically the type of the product would be the same as the type of the current instance.

    Methods

    Multiply(TOther)

    Computes the product of the current instance and other.

    Declaration
    TResult Multiply(TOther other)
    Parameters
    Type Name Description
    TOther other

    The second multiplier.

    Returns
    Type Description
    TResult

    The product.

    In This Article
    Back to top Copyright © .NET Foundation. All rights reserved.