24 package org.lightjason.agentspeak.action.builtin.math;
26 import com.codepoetics.protonpack.StreamUtils;
35 import javax.annotation.Nonnegative;
36 import javax.annotation.Nonnull;
37 import java.util.List;
64 @Nonnull
final List<ITerm> p_argument, @Nonnull
final List<ITerm> p_return )
66 if ( p_argument.size() % 2 != 0 )
70 .map( i -> Math.hypot(
71 i.get( 0 ).<Number>raw().doubleValue(),
72 i.get( 1 ).<Number>raw().doubleValue()
75 .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
action for calculating the euclidian length.
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
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