Skip to content
Ned Bingham edited this page Mar 7, 2017 · 22 revisions

This is a dynamically allocated array structure.

#include <std/ascii_stream.h>
#include <std/array.h>

using namespace core;

int main()
{
    array<int> arr = range<int>(0, 10);
    cout << arr << endl;
    return 0;
}

Structures

Functions

  • array()
  • values()
  • size()
  • at()
  • get()
  • ptr()
  • operator[]

Simple Containers

Standard Containers

Interface Containers

Specialized Containers

Input/Output

Algorithm

Clone this wiki locally