1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+ < head >
4
+ < meta charset ="UTF-8 ">
5
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6
+ < title > class DynamicArray</ title >
7
+ < link rel ="stylesheet " href ="https://cdn.jsdelivr.net/npm/bootstrap@4.4.1/dist/css/bootstrap.min.css " integrity ="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh " crossorigin ="anonymous ">
8
+ < script src ="https://code.jquery.com/jquery-3.4.1.slim.min.js " integrity ="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n " crossorigin ="anonymous "> </ script >
9
+ < script src ="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js " integrity ="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo " crossorigin ="anonymous "> </ script >
10
+ < script src ="https://cdn.jsdelivr.net/npm/bootstrap@4.4.1/dist/js/bootstrap.min.js " integrity ="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6 " crossorigin ="anonymous "> </ script >
11
+ < link rel ="preconnect " href ="https://fonts.googleapis.com ">
12
+ < link rel ="preconnect " href ="https://fonts.gstatic.com " crossorigin >
13
+ < link href ="https://fonts.googleapis.com/css2?family=Oswald:wght@200&display=swap " rel ="stylesheet ">
14
+ < link rel ="stylesheet " href ="stylesheet.css ">
15
+ < script src ="https://kit.fontawesome.com/d2ec37db1e.js " crossorigin ="anonymous "> </ script >
16
+ < link rel ="stylesheet " href ="doc.css ">
17
+ </ head >
18
+ < body >
19
+ < nav class ="navbar navbar-light " style ="background-color: #e3f2fd; ">
20
+ < a class ="navbar-brand " href ="# ">
21
+ < img src ="assets/logo.png " width ="100 " height ="75 ">
22
+ Dynamic Array - Arduino
23
+ </ a >
24
+ < button class ="navbar-toggler " type ="button " data-toggle ="collapse " data-target ="#navbarSupportedContent " aria-controls ="navbarSupportedContent " aria-expanded ="false " aria-label ="Toggle navigation ">
25
+ < span class ="navbar-toggler-icon "> </ span >
26
+ </ button >
27
+
28
+ < div class ="collapse navbar-collapse " id ="navbarSupportedContent ">
29
+ < ul class ="navbar-nav mr-auto ">
30
+ < li class ="nav-item active ">
31
+ < a class ="nav-link " href ="# "> Home < span class ="sr-only "> (current)</ span > </ a >
32
+ </ li >
33
+ < li class ="nav-item ">
34
+ < a class ="nav-link " href ="https://github.com/cMardc/Dynamic_Arrayduino "> Github</ a >
35
+ </ li >
36
+ < li class ="nav-item dropdown ">
37
+ < a class ="nav-link dropdown-toggle " href ="# " id ="navbarDropdown " role ="button " data-toggle ="dropdown " aria-haspopup ="true " aria-expanded ="false ">
38
+ Documentation
39
+ </ a >
40
+ < div class ="dropdown-menu " aria-labelledby ="navbarDropdown " style ="background-color: #e3f2fd; ">
41
+ < a class ="dropdown-item " href ="class.html "> template <typename T> class DynamicArray</ a >
42
+ < a class ="dropdown-item " href ="constuctor.html "> DynamicArray()</ a >
43
+ < a class ="dropdown-item " href ="destructer.html "> ~DynamicArray()</ a >
44
+ < a class ="dropdown-item " href ="push_back.html "> void push_back(const T& value)</ a >
45
+ < a class ="dropdown-item " href ="pop_back.html "> void pop_back()</ a >
46
+ < a class ="dropdown-item " href ="remove.html "> void remove(size_t index)</ a >
47
+ < a class ="dropdown-item " href ="operator_T.html "> T& operator[](size_t index)</ a >
48
+ < a class ="dropdown-item " href ="getSize.html "> size_t getSize() const</ a >
49
+ < div class ="dropdown-divider "> </ div >
50
+ < a class ="dropdown-item " href ="resize.html "> void resize()</ a >
51
+ </ div >
52
+ </ li >
53
+ </ ul >
54
+ < a href ="DynamicArray.h " class ="btn btn-primary my-2 my-sm-0 " type ="submit " style ="color: white; " download > Download</ a >
55
+ </ div >
56
+ </ nav >
57
+
58
+
59
+
60
+
61
+ < div class ="container ">
62
+ < div id ="code ">
63
+ < div class ="text-center ">
64
+ < h1 class ="codeH "> template <typename T> class DynamicArray</ h1 >
65
+ < br >
66
+ < p class ="codeP "> A dynamic array class that allows you to add and/or remove elements and resize the array dynamically.</ p >
67
+ < p class ="codeP "> T - The type that will be stored in the dynamic array.</ p >
68
+ < img src ="assets/class.png " style ="width: 60vw; height: 70vh; ">
69
+ </ div >
70
+ </ div >
71
+ </ div >
72
+
73
+
74
+
75
+
76
+
77
+
78
+ < nav class ="navbar navbar-light " style ="background-color: #e3f2fd; ">
79
+ < a class ="navbar-brand " href ="# ">
80
+ < img src ="assets/logo.png " width ="100 " height ="75 ">
81
+ Dynamic Array - Arduino
82
+ </ a >
83
+ < button class ="navbar-toggler " type ="button " data-toggle ="collapse " data-target ="#navbarSupportedContent " aria-controls ="navbarSupportedContent " aria-expanded ="false " aria-label ="Toggle navigation ">
84
+ < span class ="navbar-toggler-icon "> </ span >
85
+ </ button >
86
+
87
+ < div class ="collapse navbar-collapse " id ="navbarSupportedContent ">
88
+ < ul class ="navbar-nav mr-auto ">
89
+ < li class ="nav-item active ">
90
+ < a class ="nav-link " href ="# "> Home < span class ="sr-only "> (current)</ span > </ a >
91
+ </ li >
92
+ < li class ="nav-item ">
93
+ < a class ="nav-link " href ="https://github.com/cMardc/Dynamic_Arrayduino "> Github</ a >
94
+ </ li >
95
+ < li class ="nav-item dropdown ">
96
+ < a class ="nav-link dropdown-toggle " href ="# " id ="navbarDropdown " role ="button " data-toggle ="dropdown " aria-haspopup ="true " aria-expanded ="false ">
97
+ Documentation
98
+ </ a >
99
+ < div class ="dropdown-menu " aria-labelledby ="navbarDropdown " style ="background-color: #e3f2fd; ">
100
+ < a class ="dropdown-item " href ="class.html "> template <typename T> class DynamicArray</ a >
101
+ < a class ="dropdown-item " href ="constuctor.html "> DynamicArray()</ a >
102
+ < a class ="dropdown-item " href ="destructer.html "> ~DynamicArray()</ a >
103
+ < a class ="dropdown-item " href ="push_back.html "> void push_back(const T& value)</ a >
104
+ < a class ="dropdown-item " href ="pop_back.html "> void pop_back()</ a >
105
+ < a class ="dropdown-item " href ="remove.html "> void remove(size_t index)</ a >
106
+ < a class ="dropdown-item " href ="operator_T.html "> T& operator[](size_t index)</ a >
107
+ < a class ="dropdown-item " href ="getSize.html "> size_t getSize() const</ a >
108
+ < div class ="dropdown-divider "> </ div >
109
+ < a class ="dropdown-item " href ="resize.html "> void resize()</ a >
110
+ </ div >
111
+ </ li >
112
+ </ ul >
113
+ < a href ="DynamicArray.h " class ="btn btn-primary my-2 my-sm-0 " type ="submit " style ="color: white; " download > Download</ a >
114
+ </ div >
115
+ </ nav >
116
+ </ body >
117
+ </ html >
0 commit comments