A new function that can only be called once. 只能被调用一次的新函数
Remarks
If the wrapped function throws an error on its first call, the called flag remains false, allowing the function to be retried on the next invocation. This implements a retry-on-exception behavior.
Create a function that can only be called once, and repeated calls return the result of the first call
创建只能被调用一次的函数,重复调用返回第一次调用的结果