Unix and Linux Discussions Tagged with http |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
3 |
12,327 |
UNIX for Advanced & Expert Users |
|
|
|
6 |
3,893 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
11,082 |
Web Development |
|
|
|
0 |
5,279 |
What is on Your Mind? |
|
|
|
1 |
2,916 |
UNIX for Dummies Questions & Answers |
|
|
|
8 |
36,401 |
Proxy Server |
|
|
|
1 |
3,041 |
Shell Programming and Scripting |
|
|
|
1 |
5,258 |
Web Development |
|
|
|
2 |
3,355 |
Red Hat |
|
|
|
0 |
4,283 |
Programming |
|
|
|
0 |
3,867 |
IP Networking |
|
|
|
0 |
6,059 |
Web Development |
|
|
|
1 |
5,569 |
BSD |
|
|
|
2 |
7,896 |
Red Hat |
|
|
|
0 |
1,792 |
Software Releases - RSS News |
|
|
|
0 |
1,754 |
Software Releases - RSS News |
|
|
|
1 |
3,592 |
Solaris |
|
|
|
0 |
1,869 |
Software Releases - RSS News |
|
|
|
2 |
9,044 |
Programming |
|
|
|
1 |
4,441 |
Solaris |
|
|
|
0 |
1,730 |
Software Releases - RSS News |
|
|
|
1 |
4,898 |
IP Networking |
|
|
|
0 |
1,654 |
Software Releases - RSS News |
|
|
|
6 |
13,147 |
Solaris |
|
|
|
0 |
1,639 |
Software Releases - RSS News |
|
|
|
2 |
7,981 |
Programming |
|
|
|
0 |
2,564 |
Solaris BigAdmin RSS |
|
|
|
6 |
9,587 |
Programming |
|
|
|
0 |
1,751 |
Software Releases - RSS News |
|
|
|
0 |
2,004 |
Software Releases - RSS News |
|
|
|
0 |
1,560 |
Software Releases - RSS News |
|
|
|
0 |
2,913 |
UNIX and Linux RSS News |
|
|
|
0 |
1,950 |
Software Releases - RSS News |
|
|
|
0 |
1,529 |
Software Releases - RSS News |
|
|
|
0 |
1,635 |
Software Releases - RSS News |
|
|
|
8 |
19,979 |
Cybersecurity |
|
|
|
0 |
1,924 |
Software Releases - RSS News |
|
|
|
0 |
1,730 |
Software Releases - RSS News |
|
|
|
1 |
11,352 |
Programming |
|
|
|
0 |
1,755 |
Software Releases - RSS News |
TM::Literal(3pm) User Contributed Perl Documentation TM::Literal(3pm)
NAME
TM::Literal - Topic Maps, simple values (literals)
SYNOPSIS
use TM::Literal;
my $l = new TM::Literal (42, 'xsd:integer');
print $l->[0]; # prints 42
print $l->[1]; # prints http://www.w3.org/2001/XMLSchema#integer
$l = new TM::Literal(42); # default is xsd:string
DESCRIPTION
This packages will eventually handle all literal handling, i.e. not only a way to create and retrieve information about simple values used
inside topic maps, but also all necessary operations such as integer addition, string manipulation.
This is quite a chore, especially since the data types adopted here are the XML Schema Data Types.
Constants
XSD http://www.w3.org/2001/XMLSchema#
INTEGER http://www.w3.org/2001/XMLSchema#integer
DECIMAL http://www.w3.org/2001/XMLSchema#decimal
FLOAT http://www.w3.org/2001/XMLSchema#float
DOUBLE http://www.w3.org/2001/XMLSchema#double
STRING http://www.w3.org/2001/XMLSchema#string
URI http://www.w3.org/2001/XMLSchema#anyURI
ANY http://www.w3.org/2001/XMLSchema#anyType
Grammar
TODO
Operations
TODO
SEE ALSO
TM
COPYRIGHT AND LICENSE
Copyright 200[6] by Robert Barta, <drrho@cpan.org>
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
perl v5.10.1 2009-04-13 TM::Literal(3pm)