Exemplo n.º 1
0
        /// <summary>
        /// General operation on the arguments.
        /// </summary>
        /// <param name="args">
        ///            input arguments. </param>
        /// <exception cref="DynamicError">
        ///             Dynamic error. </exception>
        /// <returns> Result of the operation. </returns>
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public static org.eclipse.wst.xml.xpath2.api.ResultSequence fs_times(java.util.Collection args) throws org.eclipse.wst.xml.xpath2.processor.DynamicError
        public static ResultSequence fs_times(ICollection args)
        {
            return(FsPlus.do_math_op(args, typeof(MathTimes), "times"));
        }
Exemplo n.º 2
0
        /// <summary>
        /// General operation on the arguments.
        /// </summary>
        /// <param name="args">
        ///            input arguments. </param>
        /// <exception cref="DynamicError">
        ///             Dynamic error. </exception>
        /// <returns> Result of the operation. </returns>
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public static org.eclipse.wst.xml.xpath2.api.ResultSequence fs_minus(java.util.Collection args) throws org.eclipse.wst.xml.xpath2.processor.DynamicError
        public static ResultSequence fs_minus(ICollection args)
        {
            return(FsPlus.do_math_op(args, typeof(MathMinus), "minus"));
        }
Exemplo n.º 3
0
        /// <summary>
        /// General operation on the arguments.
        /// </summary>
        /// <param name="args">
        ///            input arguments. </param>
        /// <exception cref="DynamicError">
        ///             Dynamic error. </exception>
        /// <returns> Result of the operation. </returns>
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public static org.eclipse.wst.xml.xpath2.api.ResultSequence fs_mod(java.util.Collection args) throws org.eclipse.wst.xml.xpath2.processor.DynamicError
        public static ResultSequence fs_mod(ICollection args)
        {
            return(FsPlus.do_math_op(args, typeof(MathMod), "mod"));
        }
Exemplo n.º 4
0
        /// <summary>
        /// IDiv operation on the arguments.
        /// </summary>
        /// <param name="args">
        ///            input arguments. </param>
        /// <exception cref="DynamicError">
        ///             Dynamic error. </exception>
        /// <returns> Result of the operation. </returns>
//JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in .NET:
//ORIGINAL LINE: public static org.eclipse.wst.xml.xpath2.api.ResultSequence fs_idiv(java.util.Collection args) throws org.eclipse.wst.xml.xpath2.processor.DynamicError
        public static ResultSequence fs_idiv(ICollection args)
        {
            return(FsPlus.do_math_op(args, typeof(MathIDiv), "idiv"));
        }