Este sitio web funciona mejor con JavaScript.
Inicio
Explorar
Ayuda
Iniciar sesión
felix
/
ftb
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Pull Requests
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
array lists now can be cleared
banana-cakes
FelixBrendel
hace 6 años
padre
f35d5c6d90
commit
07e89f3841
Se han
modificado 1 ficheros
con
5 adiciones
y
0 borrados
Unificar vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+5
-0
arraylist.hpp
+ 5
- 0
arraylist.hpp
Ver fichero
@@ -19,6 +19,11 @@ struct Array_List {
data = 0;
data = 0;
}
}
void clear() {
next_index = 0;
}
Array_List<type> clone() {
Array_List<type> clone() {
Array_List<type> ret;
Array_List<type> ret;
ret.length = length;
ret.length = length;
Escribir
Vista previa
Cargando…
Cancelar
Guardar