blob: dca41c8e2a8d71f4879ae718abbba48277d17cf4 [file] [log] [blame]
/*
* Copyright 2012 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.gwt.typedarrays.shared;
/**
* A view representing an {@link ArrayBuffer} as 8-bit unsigned integers. Storing
* out-of-range values are mapped to valid values by clamping to the range 0-255.
*
* {@link "http://www.khronos.org/registry/typedarray/specs/latest/#7"}
*/
public interface Uint8ClampedArray extends Uint8Array {
/**
* Create a new view from the same array, from {@code offset} to the end of
* this view. These offset is clamped to legal indices into this view, so it
* is not an error to specify an invalid index.
*
* @param begin offset into this view if non-negative; if negative, an index
* from the end of this view
* @return a new {@link Uint8ClampedArray} instance
*/
@Override
Uint8ClampedArray subarray(int begin);
/**
* Create a new view from the same array, from {@code offset} to (but not
* including) {@code end} in this view. These indices are clamped to legal
* indices into this view, so it is not an error to specify invalid indices.
*
* @param begin offset into this view if non-negative; if negative, an index from
* the end of this view
* @param end offset into this view if non-negative; if negative, an index from
* the end of this view
* @return a new {@link Uint8ClampedArray} instance
*/
@Override
Uint8ClampedArray subarray(int begin, int end);
}