Toggle navigation
Home
com.speedment.runtime.compute.ToByte to com.speedment.runtime.compute.ToLong
No. of Instances - 1
No. of Commits - 1
No. of Projects - {'speedment'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Cascading Type Change (Similar)
DivideObjToDouble<T,ToByte<T>,Double>
to
DivideObjToDouble<T,ToLong<T>,Long>
Add or Remove Method invocation
this.first.applyAsByte(object)
to
this.first.applyAsLong(object)
Update Anonymous class
{ @Override public double applyAsDouble( T object){ return (double)this.first.applyAsByte(object) / second; } @Override public Double second(){ return second; } }
to
{ @Override public double applyAsDouble( T object){ return (double)this.first.applyAsLong(object) / (double)second; } @Override public Long second(){ return second; } }