24 package org.lightjason.agentspeak.action.builtin.collection.list;
26 import com.codepoetics.protonpack.StreamUtils;
35 import javax.annotation.Nonnegative;
36 import javax.annotation.Nonnull;
37 import java.util.Collections;
38 import java.util.List;
39 import java.util.stream.Collectors;
40 import java.util.stream.Stream;
77 @Nonnull
final List<ITerm> p_argument, @Nonnull
final List<ITerm> p_return )
79 final List<ITerm> l_arguments = Stream.concat( Stream.of( p_argument.get( 0 ) ),
CCommon.
flatten( p_argument.stream().skip( 1 ) ) )
80 .collect( Collectors.toList() );
82 if ( ( l_arguments.size() % 2 == 0 ) || ( l_arguments.size() < 3 ) )
88 .map(
ITerm::<Number>raw )
89 .map( Number::intValue ),
93 .map( i -> l_arguments.get( 0 ).<List<?>>raw().subList( i.get( 0 ), i.get( 1 ) ) )
94 .map( i -> p_parallel ? Collections.synchronizedList( i ) : i )
96 .forEach( p_return::add );
base class of build-in actions for setting name by package/classname (without prefix character) ...
static< N > IFuzzyValue< N > from( @Nonnull final N p_value)
factory
common structure for execution definition
execution context with local data
static Stream< ITerm > flatten( @Nonnull final Collection<? extends ITerm > p_terms)
flat term-in-term collection into a straight term list
result for an immutable fuzzy value
static final long serialVersionUID
serial id
static< N > CRawTerm< N > from(final N p_value)
factory for a raw term
returns a sublist within the index range.
final IFuzzyValue< Boolean > execute(final boolean p_parallel, @Nonnull final IContext p_context, @Nonnull final List< ITerm > p_argument, @Nonnull final List< ITerm > p_return)
defines a plan-body operation
final int minimalArgumentNumber()
minimum number of arguments
term structure for simple datatypes