src/java.base/share/classes/java/nio/X-Buffer.java.template
changeset 49953 a17d59ffca47
parent 49581 bd45ce23b1ac
child 50596 7cf6578a6b0b
equal deleted inserted replaced
49952:a6224ea48b66 49953:a17d59ffca47
   698      * <code>src.get(dst,&nbsp;off,&nbsp;len)</code> has exactly the same effect as
   698      * <code>src.get(dst,&nbsp;off,&nbsp;len)</code> has exactly the same effect as
   699      * the loop
   699      * the loop
   700      *
   700      *
   701      * <pre>{@code
   701      * <pre>{@code
   702      *     for (int i = off; i < off + len; i++)
   702      *     for (int i = off; i < off + len; i++)
   703      *         dst[i] = src.get():
   703      *         dst[i] = src.get();
   704      * }</pre>
   704      * }</pre>
   705      *
   705      *
   706      * except that it first checks that there are sufficient $type$s in
   706      * except that it first checks that there are sufficient $type$s in
   707      * this buffer and it is potentially much more efficient.
   707      * this buffer and it is potentially much more efficient.
   708      *
   708      *