Toggle navigation
Home
com.speedment.runtime.compute.ToBoolean to com.speedment.runtime.compute.ToDouble
No. of Instances - 1
No. of Commits - 1
No. of Projects - {'speedment'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Rename Variable
map
to
mapBooleanToDouble
map
to
mapBooleanToDouble
Cascading Type Change (Similar)
ToBooleanMapper<T,ToBoolean<T>,BooleanUnaryOperator>
to
ToDoubleMapper<T,ToBoolean<T>,BooleanToDoubleFunction>
boolean
to
double
Add or Remove Method invocation
this.mapper.applyAsBoolean(this.inner.applyAsBoolean(object))
to
this.mapper.applyAsDouble(this.inner.applyAsBoolean(object))
Update Anonymous class
{ @Override public boolean applyAsBoolean( T object){ return this.mapper.applyAsBoolean(this.inner.applyAsBoolean(object)); } @Override public MapperType mapperType(){ return MapperType.BOOLEAN_TO_BOOLEAN; } }
to
{ @Override public double applyAsDouble( T object){ return this.mapper.applyAsDouble(this.inner.applyAsBoolean(object)); } @Override public MapperType mapperType(){ return MapperType.BOOLEAN_TO_DOUBLE; } }