1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
Vector
======
Tucker Evans
v0.2, 2020-07-02
A basic vector, that hold pointers to your data structures.
NOTE: There is currently no way to distinquish between a failed retrieval
(pop, index, back, etc.) and returning a NULL value. Keep this in mind if
you plan on storing NULL values in the vector, there are plans to fix this in
the future.
Types
-----
+vec+
~~~~~
This structure holds all internal information regarding a vector.
All functions (except constructors) expect a pointer to this struct as their
first parameter.
Functions
---------
+vec* vec_new()+
~~~~~~~~~~~~~~~~
Constructs an empty vector.
Examples
^^^^^^^^
[source,c]
----
#include "vector.h"
vec *vector = vec_new();
----
`vec* vec_with_capacity(int capacity)`
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Constructs an empty vector with space for +capacity+ items.
Examples
^^^^^^^^
[source,c]
----
#include "vector.h"
vec *vector = vec_with_capacity(16);
----
+int vec_size(vec *self)+
~~~~~~~~~~~~~~~~~~~~~~~~~
Returns the number of elements in vector +self+.
Examples
^^^^^^^^
[source,c]
----
#include "vector.h"
vec *vector = vec_new();
assert(vec_size(vector) == 0);
vec_push_back(vector, NULL);
assert(vec_size(vector) == 1);
----
+void vec_push(vec *self, void *item)+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Pushes +item+ into back of +self+. This may cause a resize of the internal buffer.
Examples
^^^^^^^^
[source,c]
----
#include "vector.h"
vec *vector = vec_new();
vec_push(vector, NULL);
assert(vec_size(vector) == 1);
----
|