lists 0.0.1 copy "lists: ^0.0.1" to clipboard
lists: ^0.0.1 copied to clipboard

discontinued
outdatedDart 1 only

Collection of the lists (BitList, FilledList, FixedList, RangeList, StepList).

lists #

Collection of the lists (BitList, FilledList, FixedList, RangeList, StepList).

import "package:lists/lists.dart";

void main() {
  bitList();
  filledList();
  fixedList();
  rangeList();
  stepList();
}

void bitList() {
  // The bit state list with 65536 elements
  // Real size of the list (in memory) 30 times less
  // Exact size 2185 elements of 'Smi' values
  var list = new BitList(65536);
  list.set(32767);
  print(list.get(32767));

  list = new BitList(65536, true);
  print(list.get(32767));
}

void filledList() {
  // The read only list with 40 values of "="
  var list = new FilledList<String>(40, "=");
  print("${list.join()}");

  // The list with 10000000000000 values of "hello"
  new FilledList<String>(10000000000000, "hello");
}

void fixedList() {
  // The read only wrapper for list
  var source = [0, 1, 2, 3];
  var list = new FixedList<int>(source);
  try {
    list[0] = 0;
  } catch (e, s) {
    print("$e\n$s");
  }

  try {
    list.length = 0;
  } catch (e, s) {
    print("$e\n$s");
  }
}

void rangeList() {
  // The values from 0 to 10
  var list = new RangeList(0, 10);
  print("${list.join(", ")}");

  // The same values in reversed order
  var reversed = list.reversed;
  print("${reversed.join(", ")}");

  // The same list with step 2
  var list2 = list.step(2);
  print("${list2.join(", ")}");

  //  The values from -10000000000000 to 10000000000000
  list = new RangeList(10000000000000, 10000000000000);
}

void stepList() {
  // The values from 0 to 10
  var list = new StepList(0, 10);
  print("${list.join(", ")}");

  // The values from 10 to 0
  list = new StepList(10, 0);
  print("${list.join(", ")}");

  // The values from 0 to 10 with step 2
  list = new StepList(0, 10, 2);
  print("${list.join(", ")}");

  // The values from 10 to 0 with step -2
  list = new StepList(10, 0, -2);
  print("${list.join(", ")}");

  // The values from 0 to 255 with step 64
  const MIN_BYTE = 0;
  const MAX_BYTE = 255;
  list = new StepList(MIN_BYTE, MAX_BYTE, (MAX_BYTE >> 2) + 1);
  print("${list.join(", ")}");

  // The values from -10000000000000 to 10000000000000 with step 1
  list = new StepList(-10000000000000, 10000000000000);
}
7
likes
0
pub points
82%
popularity

Publisher

unverified uploader

Collection of the lists (BitList, FilledList, FixedList, RangeList, StepList).

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on lists