YAMP.DotOperator.DotOperator C# (CSharp) Method

DotOperator() public method

Creates a new dot operator (e.g. .*, ./, ...).
public DotOperator ( BinaryOperator top ) : YAMP.Exceptions
top BinaryOperator The binary operator on which this is based.
return YAMP.Exceptions
        public DotOperator(BinaryOperator top)
            : base("." + top.Op, top.Level)
        {
            _top = top;
        }