1Attean::IRI(3) User Contributed Perl Documentation Attean::IRI(3)
2
3
4
6 Attean::IRI - RDF Internationalized Resource Identifiers (IRIs)
7
9 This document describes Attean::IRI version 0.030
10
12 use v5.14;
13 use Attean;
14 my $term = Attean::IRI->new('http://example.org/');
15 $term->ntriples_string; # <http://example.org/>
16
18 The Attean::IRI class represents RDF IRIs. It conforms to the
19 Attean::API::IRI role and extends the IRI class.
20
22 "equals ( $iri )"
23 Returns true if $iri is equal to the invocant, false otherwise.
24
25 "as_string"
26 Returns the IRI value.
27
29 Please report any bugs or feature requests to through the GitHub web
30 interface at <https://github.com/kasei/attean/issues>.
31
33 IRI
34
35 <http://www.ietf.org/rfc/rfc3987.txt>
36
38 Gregory Todd Williams "<gwilliams@cpan.org>"
39
41 Copyright (c) 2014--2020 Gregory Todd Williams. This program is free
42 software; you can redistribute it and/or modify it under the same terms
43 as Perl itself.
44
45
46
47perl v5.34.0 2021-07-22 Attean::IRI(3)