https://github.com/vevdokimovm/polymorphic-vector-cpp
C lab: runtime-polymorphic vector with generic Map and Filter higher-order functions
https://github.com/vevdokimovm/polymorphic-vector-cpp
c functional-programming higher-order-functions polymorphism
Last synced: about 2 hours ago
JSON representation
C lab: runtime-polymorphic vector with generic Map and Filter higher-order functions
- Host: GitHub
- URL: https://github.com/vevdokimovm/polymorphic-vector-cpp
- Owner: vevdokimovm
- License: mit
- Created: 2020-02-14T19:14:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2026-04-20T20:33:25.000Z (2 months ago)
- Last Synced: 2026-06-10T22:04:18.287Z (17 days ago)
- Topics: c, functional-programming, higher-order-functions, polymorphism
- Language: C
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# polymorphic-vector-cpp
C lab — **Polymorphic Vector with generic Map and Filter**. Implements a runtime-polymorphic vector in pure C, supporting generic `map` and `filter` higher-order functions.
University lab (Programming in C).
## Features
- Polymorphic vector container in C (void* based)
- Generic `Map` and `Filter` functions operating on any vector type
- Complex number unit for testing
- Unit tests
## Build
```bash
cd "Polymorphic Vector - With Generic Map And Filter"
make
# or
cmake . && make
```
## License
MIT