Everything you care about in one place

Follow feeds: blogs, news, RSS and more. An effortless way to read and digest content of your choice.

Get Feeder

matthiasnoback.nl

Matthias Noback - Matthias Noback - Blog

Get the latest updates from Matthias Noback - Matthias Noback - Blog directly as they happen.

Follow now 36 followers

Latest posts

Last updated 27 days ago

Fortran - Errors and error handling - Part 7 - Fatal errors

27 days ago

We’ve encountered several ways of designing functions in a way that allows...

Fortran - Errors and error handling - Part 6 - Guarantees

about 1 month ago

Parsing an array of strings to a polyline should fail if one...

Fortran - Errors and error handling - Part 5 - Error propagation

about 1 month ago

Parsing a string to a point may not be successful, and we...

Fortran - Errors and error handling - Part 4 - Using an Either type

about 1 month ago

We looked at optionally returning a value from a function. In the...

Fortran - Errors and error handling - Part 3 - Preventing edge cases with types

about 1 month ago

In the previous post we introduced an optional_real_t type to be the...

Fortran - Errors and error handling - Part 2

about 1 month ago

In the previous post we’ve looked at several ways to communicate to...

Fortran - Errors and error handling - Part 1 - Exploration

about 1 month ago

Fortran doesn’t have exceptions. You can’t jump out of a function when...

Fortran - Functional Programming Concepts - Reduce

about 2 months ago

We’ve implemented filter and map operations. The results of both these operations...

Fortran - Functional Programming - List type

about 2 months ago

In the previous post we looked at this dream scenario list([1, 3,...

Fortran - Functional Programming Concepts - Map

about 2 months ago

We considered the problem of filtering elements in an array, keeping only...

Fortran - Functional Programming Concepts - Closures

about 2 months ago

We have a reusable filter function to which we pass the name...

Fortran - Functional Programming Concepts - Generic Filtering

about 2 months ago

We have a working filter function for integers. Now can we generalize...