summaryrefslogtreecommitdiff
path: root/Documentation/SmartPointers.md
AgeCommit message (Collapse)Author
2021-04-23AK: Rename adopt() to adopt_ref()Andreas Kling
This makes it more symmetrical with adopt_own() (which is used to create a NonnullOwnPtr from the result of a naked new.)
2020-03-20Documentation: Tweak document about smart pointers a bitAndreas Kling
Add notes about assigning between FooPtr / NonnullFooPtr.
2020-01-23AK: Let's call decrementing reference counts "unref" instead of "deref"Andreas Kling
It always bothered me that we're using the overloaded "dereference" term for this. Let's call it "unreference" instead. :^)
2019-08-01Documentation: Add a paragraph about NonnullOwnPtr to SmartPointers.mdAndreas Kling
2019-06-21Documentation: Update SmartPointers.md with new pointer names.Andreas Kling
2019-05-15Documentation: Add a brief description of Serenity's smart pointer types.Andreas Kling