Beancount.Directives.PopTag (beancount_ex v0.6.0)

Copy Markdown View Source

The poptag directive pops a tag from Beancount's tag stack.

See The Tag Stack.

Beancount syntax

poptag #trip

General form: poptag #Tag

Elixir struct

%Beancount.Directives.PopTag{
  tag: "trip"
}

Or use Beancount.pop_tag/1:

Beancount.pop_tag("trip")

Fields

  • tag - tag name without the # prefix (must match a prior pushtag).

Summary

Types

t()

@type t() :: %Beancount.Directives.PopTag{tag: String.t()}