MCPcopy Create free account
hub / github.com/arun11299/cpp-jwt / algorithms_param

Method algorithms_param

include/jwt/parameters.hpp:159–161  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

157struct algorithms_param
158{
159 algorithms_param(Sequence&& seq)
160 : seq_(std::forward<Sequence>(seq))
161 {}
162
163 Sequence get() && { return std::move(seq_); }
164 const Sequence& get() const& { return seq_; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected