You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The challenge for this, in terms of implementing it on the URI class, is that offset() is not a standardised part of the URI spec. Whereas host/port is.
Would be nice to be able to have an offset method in the URI class, such that:
eckit::Offset o = uri.offset()
.Ideally this would be implemented by storing offset as a member (as we do with host and port) with a sensible default (0).
From my understanding, offsets are normally encoded in the "fragment". This means they have to be extracted on the client code via a function like
which imo isn't very nice.
The text was updated successfully, but these errors were encountered: