Integrate Buffer<T> experiment into Pointer<T>; Remove CArray

This commit is contained in:
dcodeIO
2018-09-15 02:54:30 +02:00
parent 029dde7c3c
commit 3f93808914
7 changed files with 573 additions and 712 deletions

View File

@ -457,12 +457,6 @@ declare class Array<T> {
sort(comparator?: (a: T, b: T) => i32): this;
}
/** Class representing a C-like array of values of type `T` with limited capabilities. */
declare class CArray<T> {
[key: number]: T;
private constructor();
}
/** Class representing a sequence of characters. */
declare class String {