-
Notifications
You must be signed in to change notification settings - Fork 0
array
Ned Bingham edited this page Mar 7, 2017
·
22 revisions
array <std/array.h>
template <class value_type> struct array
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;
}
value_type data
int count
int capacity