An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

[![Build Status](https://travis-ci.org/bast/fortran-collections.svg?branch=master)](https://travis-ci.org/bast/fortran-collections/builds)
[![License](https://img.shields.io/badge/license-%20BSD--3-blue.svg)](../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).