Toggle navigation
Home
com.speedment.runtime.compute.ToShort to com.speedment.runtime.compute.ToChar
No. of Instances - 2
No. of Commits - 1
No. of Projects - {'speedment'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Rename Variable
map
to
mapChar
map
to
mapChar
Cascading Type Change (Similar)
ToShortMapper<T,ToShort<T>,ShortUnaryOperator>
to
ToCharMapper<T,ToChar<T>,CharUnaryOperator>
short
to
char
ToShortMapper<T,ToShort<T>,ShortUnaryOperator>
to
ToCharMapper<T,ToChar<T>,CharUnaryOperator>
short
to
char
Add or Remove Method invocation
this.mapper.applyAsShort(this.inner.applyAsShort(object))
to
this.mapper.applyAsChar(this.inner.applyAsChar(object))
this.mapper.applyAsShort(this.inner.applyAsShort(object))
to
this.mapper.applyAsChar(this.inner.applyAsChar(object))
Update Anonymous class
{ @Override public short applyAsShort( T object){ return this.mapper.applyAsShort(this.inner.applyAsShort(object)); } @Override public MapperType mapperType(){ return MapperType.SHORT_TO_SHORT; } }
to
{ @Override public char applyAsChar( T object){ return this.mapper.applyAsChar(this.inner.applyAsChar(object)); } @Override public MapperType mapperType(){ return MapperType.CHAR_TO_CHAR; } }
{ @Override public short applyAsShort( T object){ return this.mapper.applyAsShort(this.inner.applyAsShort(object)); } @Override public MapperType mapperType(){ return MapperType.SHORT_TO_SHORT; } }
to
{ @Override public char applyAsChar( T object){ return this.mapper.applyAsChar(this.inner.applyAsChar(object)); } @Override public MapperType mapperType(){ return MapperType.CHAR_TO_CHAR; } }