📜  Phoenix defp - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:40.882000             🧑  作者: Mango

代码示例1
defmodule MyModule do

  def function do
    # call all the defp functions below to do something
  end

  defp function2 do
    # do something that no other module cares about or needs to know about
  end

  defp function3 do
    # do something that no other module cares about or needs to know about
  end

  defp function4 do
    # do something that no other module cares about or needs to know about
  end
end