Packages

`yex` is a Elixir port of `yrs`, a Rust library that has tools for making CRDTs easier to work with. It's a work in progress and not ready for production use yet!.

Current section

Files

Jump to
yex lib yex.ex
Raw

lib/yex.ex

defmodule Yex do
@external_resource "README.md"
@moduledoc "README.md"
|> File.read!()
|> String.split("<!-- MDOC -->")
|> Enum.fetch!(1)
@doc """
Hello world.
## Examples
iex> Yex.hello()
:world
"""
def hello do
:world
end
end