Felix Gündling

Results 327 comments of Felix Gündling

> why dont we just use std::basic_string and genric string dont they serve the same purpose? Basically, yes. However, it is possible that `std::string` in the libstdc++, MSVC std lib...

Of which standard library? There are several implementations. They are all quite complex. I think this would be a lot of work. It would certainly be easier to just do...

I'll look into it. Maybe for now, you can use `cista::vector`?

Note that using `MODIFY` mode on an mmap is a really bad idea if you want to read and modify serialized data. Using `push_back` in your example will allocate memory...

I added support for MODIFY on windows. However, this should not be used for changing serialized data beyond simple scalar modifications.

At the moment, this is not implemented. The attribute is ignored while parsing and doesn't get stored anywhere. So currently, it cannot be exposed via the API. It's kind of...

Thank you for providing your solution! :+1:

MOTIS is not a validator. Our concept is "garbage in - garbage out". There are enough GTFS validation tools (and tools like [gtfs-tidy](https://github.com/patrickbr/gtfstidy)) out there that everyone can use to...

Yes, the geo station lookup is implemented (now in the `nigiri` module, `lookup` depends on the old core). It's not really a documentation, but the `*Request` and `*Response` types are...

> I'm trying to evaluate how easily I could drop my node-GTFS dependency and go full motis. Which APIs are missing?