Toggle navigation
Home
com.speedment.runtime.compute.ToByte to com.speedment.runtime.compute.ToInt
No. of Instances - 2
No. of Commits - 1
No. of Projects - {'speedment'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Cascading Type Change (Similar)
ToByteMapper<T,ToByte<T>,ByteUnaryOperator>
to
ToIntMapper<T,ToInt<T>,IntUnaryOperator>
byte
to
int
ToByteMapper<T,ToByte<T>,ByteUnaryOperator>
to
ToIntMapper<T,ToInt<T>,IntUnaryOperator>
byte
to
int
Add or Remove Method invocation
this.mapper.applyAsByte(this.inner.applyAsByte(object))
to
this.mapper.applyAsInt(this.inner.applyAsInt(object))
this.mapper.applyAsByte(this.inner.applyAsByte(object))
to
this.mapper.applyAsInt(this.inner.applyAsInt(object))
Update Anonymous class
{ @Override public byte applyAsByte( T object){ return this.mapper.applyAsByte(this.inner.applyAsByte(object)); } @Override public MapperType mapperType(){ return MapperType.BYTE_TO_BYTE; } }
to
{ @Override public int applyAsInt( T object){ return this.mapper.applyAsInt(this.inner.applyAsInt(object)); } @Override public MapperType mapperType(){ return MapperType.INT_TO_INT; } }
{ @Override public byte applyAsByte( T object){ return this.mapper.applyAsByte(this.inner.applyAsByte(object)); } @Override public MapperType mapperType(){ return MapperType.BYTE_TO_BYTE; } }
to
{ @Override public int applyAsInt( T object){ return this.mapper.applyAsInt(this.inner.applyAsInt(object)); } @Override public MapperType mapperType(){ return MapperType.INT_TO_INT; } }
Rename Variable
map
to
mapInt
map
to
mapInt