IRIREF top-level property

Parser<List> IRIREF
final

18 IRIREF ::= '<' ([^#x00-#x20<>"{}|^`] | UCHAR)* '>' /* #x00=NULL #01-#x1F=control codes #x20=space */

Implementation

final IRIREF =
    (pattern('<') & (nonSpecialChar | UCHAR).star() & (pattern('>')));