.FastAIshowblock!

function defined in module FastAI


			showblock!(handle, backend, block, obs)
showblock!(handle, backend, blocks, obss)
showblock!(handle, backend, title => block, obs)

Show block of data to an existing context handle using backend.

See showblock for examples.

Extending

Every ShowBackend should implement the following versions of this method:

  • showblock!(handle, backend, block::Block, obs) to show a single block of obs; should be implemented for every block type you want to show

  • showblock!(handle, backend, blocks::Tuple, obss::Tuple) to show several blocks that belong to the same observation.

Optionally, you can also implement

  • showblock!(handle, backend, pair::Pair, obs) where (title, block) = pair gives the name for a block. If this is not implemented for a backend, then calling it will default to the untitled method.