Toggle navigation
Home
java.util.function.IntUnaryOperator to java.util.function.LongUnaryOperator
No. of Instances - 2
No. of Commits - 2
No. of Projects - {'speedment'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Jdk
Mapping:
Cascading Type Change (Similar)
ToIntMapper<T,ToInt<T>,IntUnaryOperator>
to
ToLongMapper<T,ToLong<T>,LongUnaryOperator>
int
to
long
Add or Remove Method invocation
this.mapper.applyAsInt(this.inner.applyAsInt(object))
to
this.mapper.applyAsLong(this.inner.applyAsLong(object))
Update Anonymous class
{ @Override public int applyAsInt( T object){ return this.mapper.applyAsInt(this.inner.applyAsInt(object)); } @Override public MapperType mapperType(){ return MapperType.INT_TO_INT; } }
to
{ @Override public long applyAsLong( T object){ return this.mapper.applyAsLong(this.inner.applyAsLong(object)); } @Override public MapperType mapperType(){ return MapperType.LONG_TO_LONG; } }