# `RDF.BlankNode.Generator.Increment`
[🔗](https://github.com/rdf-elixir/rdf-ex/blob/v3.0.1/lib/rdf/blank_node_generator/increment.ex#L1)

An implementation of a `RDF.BlankNode.Generator.Algorithm` which returns `RDF.BlankNode`s with incremented identifiers.

# `t`

```elixir
@type t() :: %RDF.BlankNode.Generator.Increment{
  counter: pos_integer(),
  map: map(),
  prefix: String.t()
}
```

# `new`

Creates a struct with the state of the algorithm.

## Options

- `prefix`: a string prepended to the generated blank node identifier
- `counter`: the number from which the incremented counter starts

---

*Consult [api-reference.md](api-reference.md) for complete listing*
