limit() public method

public limit ( int newLimit ) : BufferN
newLimit int
return BufferN
Example #1
0
 internal static String toString(BufferN b)
 {
     return (b.GetType().Name
             + "[pos=" + b.position()
             + " lim=" + b.limit()
             + " cap=" + b.capacity()
             + "]");
 }