Beaver.MLIR.Location (beaver v0.2.19)
This module defines functions working with MLIR Location.
Link to this section Summary
Functions
Get a location of file line. Column is zero by default because in Elixir it is usually omitted.
Link to this section Types
Link to this section Functions
Link to this function
file(opts)
Get a location of file line. Column is zero by default because in Elixir it is usually omitted.
examples
Examples
iex> ctx = MLIR.Context.create()
iex> MLIR.Location.file(name: "filename", line: 1, column: 1, ctx: ctx) |> MLIR.to_string()
~s{filename:1:1}
iex> ctx |> MLIR.Context.destroy
Link to this function
make(value)
Link to this function