Lyra
Lyra copied to clipboard
Lambdas passed to `opt` and `arg` constructors cannot be move-only
Because the lambda is taken by const&
is can only be copied into the parser object, which is not possible if it contains state that can only be moved.
https://godbolt.org/z/d9hGsa1Te