Crate flatfish

source ·
Expand description

Flatfish

flatfish crate flatfish documentation

Provide a ff! macro to write Fully Qualified Syntax without nesting turbofishes.

Which can be usefull in very generic code when the chain of traits and associated types can be long and verbose, or in macros generating chains of traits.

Syntax is

ff!(Type | Trait1::Item | Trait2::Item ...)

which desugars to

<... <<T as Trait1>::Item as Trait2>::Item ...>

Last item can be any associated item: type, function or constant.

Macros

  • Provide an alternative syntax to write Fully Qualified Syntax without nesting turbofishes.