Elixir語言中 Inspect.Opts.default_inspect_fun
相關用法介紹如下。
用法:
default_inspect_fun(fun)
(從 1.13.0 開始)
@spec default_inspect_fun((term(), t() -> Inspect.Algebra.t())) :: :ok
設置默認檢查函數。
請謹慎設置此選項,因為它會更改檢查係統中所有值的方式。此函數的主要用途是提供過濾檢查值的入口點,以便實體遵守有關數據安全和數據隱私的規則和法規。
非常不鼓勵庫設置自己的函數,因為這必須由應用程序控製。庫應該使用自定義檢查實現來定義自己的結構。如果庫必須更改默認檢查函數,那麽最好定義要求庫的用戶使用您選擇的函數顯式調用
。default_inspect_fun/1
默認值為
。Inspect.inspect/2
例子
previous_fun = Inspect.Opts.default_inspect_fun()
Inspect.Opts.default_inspect_fun(fn
%{address: _} = map, opts ->
previous_fun.(%{map | address: "[REDACTED]"}, opts)
value, opts ->
previous_fun.(value, opts)
end)
相關用法
- Elixir Inspect.Algebra.container_doc用法及代碼示例
- Elixir Inspect.Algebra.format用法及代碼示例
- Elixir Inspect.Algebra.glue用法及代碼示例
- Elixir Inspect.Algebra.string用法及代碼示例
- Elixir Inspect.Algebra.space用法及代碼示例
- Elixir Inspect.Algebra用法及代碼示例
- Elixir Inspect.Algebra.line用法及代碼示例
- Elixir Inspect.Algebra.nest用法及代碼示例
- Elixir Inspect.Algebra.concat用法及代碼示例
- Elixir Inspect.Algebra.flex_break用法及代碼示例
- Elixir Inspect.Algebra.break用法及代碼示例
- Elixir Inspect.Algebra.next_break_fits用法及代碼示例
- Elixir Inspect.Algebra.fold_doc用法及代碼示例
- Elixir Inspect.Algebra.group用法及代碼示例
- Elixir Inspect.Algebra.empty用法及代碼示例
- Elixir Inspect用法及代碼示例
- Elixir Integer.pow用法及代碼示例
- Elixir Integer.undigits用法及代碼示例
- Elixir Integer.floor_div用法及代碼示例
- Elixir Integer.extended_gcd用法及代碼示例
- Elixir Integer.to_charlist用法及代碼示例
- Elixir Integer.parse用法及代碼示例
- Elixir Integer.mod用法及代碼示例
- Elixir Integer.is_even用法及代碼示例
- Elixir Integer.to_string用法及代碼示例
注:本文由純淨天空篩選整理自elixir-lang.org大神的英文原創作品 Inspect.Opts.default_inspect_fun(fun)。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。