Microsoft.Z3.FuncDecl.Apply C# (CSharp) Méthode

Apply() public méthode

Create expression that applies function to arguments.
public Apply ( ) : Expr
Résultat Expr
        public Expr Apply(params Expr[] args)
        {
            Contract.Requires(args == null || Contract.ForAll(args, a => a != null));

            Context.CheckContextMatch(args);
            return Expr.Create(Context, this, args);
        }