equal
deleted
inserted
replaced
698 * <code>src.get(dst, off, len)</code> has exactly the same effect as |
698 * <code>src.get(dst, off, 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 * |