capacity() public method

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