Наследование: PartitionFunction, IRuleAlgorithm
Пример #1
0
        public IRuleAlgorithm ConstructMe(params object[] objects)
        {
            var args = objects.Select(x => (IExpression)x).ToList();

            var partitionFunc = new PartitionByLong(functionName, args)
                                {
                                    Count = Count,
                                    Length = Length
                                };
            return partitionFunc;
        }
Пример #2
0
        public IRuleAlgorithm ConstructMe(params object[] objects)
        {
            var args = objects.Select(x => (IExpression)x).ToList();

            var partitionFunc = new PartitionByLong(functionName, args)
            {
                Count  = Count,
                Length = Length
            };

            return(partitionFunc);
        }