dart-sdk/pkg/typed_data
lrn@google.com 42dac4c7b4 Add some ArgumentError and RangeError constructors that capture more information.
Switch some uses of RangeError.range to RangeError.index.
Fix bug in Queue where elementAt allowed `length` as input.

R=sgjesse@google.com

Review URL: https://codereview.chromium.org//711003002

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@41653 260f80e4-7a28-3924-810f-c04153c831b5
2014-11-11 07:55:47 +00:00
..
lib Add some ArgumentError and RangeError constructors that capture more information. 2014-11-11 07:55:47 +00:00
test Create associated packages for the dart:collection and dart:async libs. 2013-12-19 11:57:56 +00:00
LICENSE Adding license files to packages. 2013-12-19 12:36:15 +00:00
pubspec.yaml Add some ArgumentError and RangeError constructors that capture more information. 2014-11-11 07:55:47 +00:00
README.md Create associated packages for the dart:collection and dart:async libs. 2013-12-19 11:57:56 +00:00

Helper libraries for working with typed data lists.

The typed_data package contains utility functions and classes that makes working with typed data lists easier.

Using

The typed_data package can be imported as

import 'package:typed_data/typed_data.dart';

Typed buffers: Growable typed data lists

Typed buffers are contains growable lists backed by typed arrays. These are similar to the growable lists returned by new List(), but stores typed data like a typed data list.