On this page:
make-resource
resource?
resource-scheme
resource-user
resource-host
resource-path-absolute?
resource-path
resource-query
resource-fragment
string->resource
resource->string
combine-resource/  relative

3.1 URL Procedures🔗ℹ

The following functions are defined as aliases of their URL counterparts.

value

make-resource : 
(-> (or/c #f string?)
    (or/c #f string?)
    (or/c #f string?)
    (or/c #f exact-nonnegative-integer?)
    boolean?
    (listof path/param?)
    (listof (cons/c symbol? (or/c #f string?)))
    (or/c #f string?)
    resource?)

value

resource? : (-> any/c boolean?)

value

resource-scheme : (-> resource? (or/c #f string?))

value

resource-user : (-> resource? (or/c #f string?))

value

resource-host : (-> resource? (or/c #f string?))

value

resource-path-absolute? : (-> resource? boolean?)

value

resource-path : (-> resource? (listof path/param?))

value

resource-query

 : (-> resource? (listof (cons/c symbol? (or/c #f string?))))

value

resource-fragment : (-> resource? (or/c #f string?))

value

string->resource : (-> string? resource?)

value

resource->string : (-> resource? string?)

value

combine-resource/relative : (-> resource? string? resource?)