We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
現在のTransformInlineが返す参照をOnMemory<T>にする。そうするとT (= Id<T>) は OnMemory<T>に代入できなくなる。逆もしかり。 allocatorはこの事実を反映して、SaveをT -> TからOnMemory<T> -> Tにするべき。 OnMemoryのまま宙ぶらりんになったインスタンスはメモリ上のゴミなので、そのまま消して良い。
OnMemory<T>
T
Id<T>
Save
T -> T
OnMemory<T> -> T
OnMemory
The text was updated successfully, but these errors were encountered:
partially done in #133
Sorry, something went wrong.
No branches or pull requests
現在のTransformInlineが返す参照を
OnMemory<T>
にする。そうするとT
(=Id<T>
) はOnMemory<T>
に代入できなくなる。逆もしかり。allocatorはこの事実を反映して、
Save
をT -> T
からOnMemory<T> -> T
にするべき。OnMemory
のまま宙ぶらりんになったインスタンスはメモリ上のゴミなので、そのまま消して良い。The text was updated successfully, but these errors were encountered: