LoginSignup
17
0

More than 1 year has passed since last update.

テストコードの中でダミーpidを作りたい場合はErlang:c.pid/3が便利。

:c.pid(0, 21, 32)

IExの中でダミーpidを作りたい場合はElixirIEx.Helpers.pid/1IEx.Helpers.pid/3が便利。

iex

iex> pid("0.21.32")
#PID<0.21.32>

iex> pid(0, 21, 32)
#PID<0.21.32>

ご参考までに

17
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
17
0