2
0
mirror of https://github.com/boostorg/url.git synced 2026-02-26 17:12:11 +00:00

params and segments link to type

fix #386
This commit is contained in:
alandefreitas
2022-08-12 17:44:51 -03:00
parent dcdad3c2bf
commit 40bc5ef154
2 changed files with 36 additions and 1 deletions

View File

@@ -998,6 +998,11 @@ public:
@par Specification
@li <a href="https://datatracker.ietf.org/doc/html/rfc3986#section-3.3"
>3.3. Path (rfc3986)</a>
@see
@ref urls::segments_encoded,
@ref segments.
*/
BOOST_URL_DECL
segments_encoded
@@ -1019,6 +1024,10 @@ public:
@par Specification
@li <a href="https://datatracker.ietf.org/doc/html/rfc3986#section-3.3"
>3.3. Path (rfc3986)</a>
@see
@ref urls::segments,
@ref encoded_segments.
*/
urls::segments
segments() noexcept
@@ -1157,6 +1166,10 @@ public:
query-param = key [ "=" value ]
@endcode
@see
@ref urls::params_encoded,
@ref params.
*/
urls::params_encoded
encoded_params() noexcept
@@ -1178,9 +1191,13 @@ public:
query-param = key [ "=" value ]
@endcode
@see
@ref urls::params,
@ref encoded_params.
*/
urls::params
params()
params() noexcept
{
return {*this};
}

View File

@@ -1458,6 +1458,11 @@ public:
@par Specification
@li <a href="https://datatracker.ietf.org/doc/html/rfc3986#section-3.3"
>3.3. Path (rfc3986)</a>
@see
@ref urls::segments_encoded_view,
@ref segments.
*/
segments_encoded_view
encoded_segments() const noexcept
@@ -1482,6 +1487,11 @@ public:
@par Specification
@li <a href="https://datatracker.ietf.org/doc/html/rfc3986#section-3.3"
>3.3. Path (rfc3986)</a>
@see
@ref urls::segments_view,
@ref encoded_segments.
*/
segments_view
segments() const noexcept
@@ -1628,6 +1638,10 @@ public:
@par Specification
@li <a href="https://datatracker.ietf.org/doc/html/rfc3986#section-3.4"
>3.4. Query (rfc3986)</a>
@see
@ref urls::params_encoded_view,
@ref params.
*/
BOOST_URL_DECL
params_encoded_view
@@ -1651,6 +1665,10 @@ public:
@par Specification
@li <a href="https://datatracker.ietf.org/doc/html/rfc3986#section-3.4"
>3.4. Query (rfc3986)</a>
@see
@ref urls::params_view,
@ref encoded_params.
*/
BOOST_URL_DECL
params_view