annotations<R, E> static method

ZIO<R, E, IMap<String, dynamic>> annotations<R, E>(
  1. Symbol key
)

Retrieves and clears the annotations for the provided key.

Implementation

static ZIO<R, E, IMap<String, dynamic>> annotations<R, E>(Symbol key) =>
    ZIO.from((ctx) => Exit.right(ctx.unsafeGetAnnotations(key)));