https://github.com/bast/fortran-collections
Got tired of Fortran not having high level containers.
https://github.com/bast/fortran-collections
Last synced: 3 months ago
JSON representation
Got tired of Fortran not having high level containers.
- Host: GitHub
- URL: https://github.com/bast/fortran-collections
- Owner: bast
- License: bsd-3-clause
- Created: 2016-05-05T21:49:45.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-11-22T16:51:57.000Z (over 9 years ago)
- Last Synced: 2025-09-09T16:03:20.335Z (8 months ago)
- Language: FORTRAN
- Size: 6.84 KB
- Stars: 7
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/bast/fortran-collections/builds)
[](../master/LICENSE)
# fortran-collections
Got tired of Fortran not having high level containers. Uses C++ vectors under
the hood.
Contributions are most welcome!
## API
Currently implemented types are `vector_double` and `vector_int`.
They support the methods
`init`,
`push`,
`pop`,
`at`,
`length`,
`clear`, and
`delete`.
Check out an [example](../master/test/test.f90).