Macro grdf_triple

Source
macro_rules! grdf_triple {
    {
		@from ($($acc:tt)*) $id:ident $($rest:tt)*
	} => { ... };
    {
		@from ($($acc:tt)*) < $iri:literal > $($rest:tt)*
	} => { ... };
    {
		@from ($($acc:tt)*) _ : $id:literal $($rest:tt)*
	} => { ... };
    {
		@from ($($acc:tt)*) $value:literal ^^ $ty:literal $($rest:tt)*
	} => { ... };
    {
		@from ($($acc:tt)*) $value:literal $($rest:tt)*
	} => { ... };
    {
		@from ($($acc:tt)*)
	} => { ... };
    {
		@from ($($acc:tt)*) $t:tt $($rest:tt)*
	} => { ... };
    {
		$($t:tt)*
	} => { ... };
}
Expand description

Creates a gRDF triple.