Exemplo n.º 1
0
 public static Accumulator <N> RightShift(Accumulator <N> n, int sft)
 {
     return(new Accumulator <N>(BigUInt <Double <N> > .RightShift(n.value, sft)));
 }
Exemplo n.º 2
0
 public static Mantissa <N> RightShift(Mantissa <N> n, int sft)
 {
     return(new Mantissa <N>(BigUInt <N> .RightShift(n.value, sft)));
 }