Macro rdf_types::grdf_quads

source ·
macro_rules! grdf_quads {
    {
		@tokenize [$($acc:tt)*] [$($current:tt)*] $i:ident $($rest:tt)*
	} => { ... };
    {
		@tokenize [$($acc:tt)*] [$($current:tt)*] < $($rest:tt)*
	} => { ... };
    {
		@tokenize [$($acc:tt)*] [$($current:tt)*] > $($rest:tt)*
	} => { ... };
    {
		@tokenize [$($acc:tt)*] [$($current:tt)*] _ $($rest:tt)*
	} => { ... };
    {
		@tokenize [$($acc:tt)*] [$($current:tt)*] : $($rest:tt)*
	} => { ... };
    {
		@tokenize [$($acc:tt)*] [$($current:tt)*] ^ $($rest:tt)*
	} => { ... };
    {
		@tokenize [$($acc:tt)*] [$($current:tt)*] $l:literal $($rest:tt)*
	} => { ... };
    {
		@tokenize [$($acc:tt)*] [$($current:tt)*] . $($rest:tt)*
	} => { ... };
    {
		@tokenize [$($acc:tt)*] []
	} => { ... };
    {
		@tokenize [$($acc:tt)*] [$($current:tt)*] $t:tt $($rest:tt)*
	} => { ... };
    {
		@quads_from [$($acc:tt)*] ($($triple:tt)*) $($rest:tt)*
	} => { ... };
    {
		@quads_from [$($acc:tt)*]
	} => { ... };
    {
		$($t:tt)*
	} => { ... };
}
Expand description

Creates an array of quads.