logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

RDF::SN - Short names for URIs with prefixes from prefix.cc

Description

       This module supports abbreviating URIs as short names (aka qualified names), so its the counterpart of
       RDF::NS.

   new([$ns])
       Create a lookup hash from a mapping hash of namespace URIs to prefixes (RDF::NS). If multiple prefixes
       exist, the shortest is used. If multiple prefixes with same length exist, the first in alphabetical order
       is used.

   qname($uri)
       Returns a prefix and local name (as list in list context, concatenated by ":" in scalar context) if the
       URI can be abbreviated with given namespaces.

Name

       RDF::SN - Short names for URIs with prefixes from prefix.cc

Synopsis

         use RDF::SN;
         $abbrev = RDF::SN->new('20230619');
         $abbrev->qname('http://www.w3.org/2000/01/rdf-schema#type'); # rdfs:type

See Also