OOC icon indicating copy to clipboard operation
OOC copied to clipboard

An framework that provides extensions to the standard library with object oriented design in C

Results 2 OOC issues
Sort by recently updated
recently updated
newest added

Iterators can contain the first element be casted to the first element ```C Iterator(Vector(int)) x = Call(Vector(int), begin, some_vector); int some_value = (int)*x; ```

enhancement

24 //Macros for calling 25 #define NewExpansion(type, ...) New##type(__VA_ARGS__) 26 #define New(type, ...) NewExpansion(type, __VA_ARGS__) 27 28 #define DeleteExpansion(object) \ 29 Call(delete, object); \ 30 (object) = NULL 31 32...

enhancement