mirror of
https://github.com/apple/swift.git
synced 2026-06-27 12:25:55 +02:00
9ead8781d4
Co-authored-by: Alex Martini <amartini@apple.com> Co-authored-by: Graham Lee <glee23@apple.com> Co-authored-by: Chris Adamson <cadamson@apple.com> Co-authored-by: Kirby Turner <kirby_turner@apple.com> Co-authored-by: Paris Pinkney <ppinkney@apple.com> Co-authored-by: Dave Spector <dspector@apple.com> Co-authored-by: Sofia Rodriguez Morales <sofia_rodriguez@apple.com> Co-authored-by: Ethan Kusters <ekusters@apple.com> Co-authored-by: Goli Mohammadi <g_mohammadi@apple.com> Co-authored-by: Adora Vaz <a_vaz@apple.com> Co-authored-by: David Rönnqvist <ronnqvist@apple.com> Co-authored-by: Nate Merseth Cook <natecook@apple.com> Co-authored-by: Susan Conant <susan_c@apple.com>
1.4 KiB
1.4 KiB
Manual Memory Management
Allocate and manage memory manually.
Topics
First Steps
Safe Memory Access
Swift/SpanSwift/RawSpanSwift/OutputSpanSwift/UTF8SpanSwift/MutableSpanSwift/MutableRawSpanSwift/OutputRawSpan
Typed Pointers
Use typed pointers and buffers to access memory as instances of a specific type.
Swift/UnsafePointerSwift/UnsafeMutablePointerSwift/UnsafeBufferPointerSwift/UnsafeMutableBufferPointer
Raw Pointers
Use raw pointers and buffers to access memory for loading and storing as raw bytes.
Swift/UnsafeRawPointerSwift/UnsafeMutableRawPointerSwift/UnsafeRawBufferPointerSwift/UnsafeMutableRawBufferPointer
Memory Access
Swift/withUnsafePointer(to:_:)-9fjn6Swift/withUnsafePointer(to:_:)-35wrnSwift/withUnsafeMutablePointer(to:_:)Swift/withUnsafeBytes(of:_:)-5zxtlSwift/withUnsafeBytes(of:_:)-5gesgSwift/withUnsafeMutableBytes(of:_:)Swift/withUnsafeTemporaryAllocation(of:capacity:_:)Swift/withUnsafeTemporaryAllocation(byteCount:alignment:_:)Swift/swap(_:_:)Swift/exchange(_:with:)
Memory Layout
Swift/MemoryLayout
Reference Counting
Swift/UnmanagedSwift/withExtendedLifetime(_:_:)-4mmpvSwift/withExtendedLifetime(_:_:)-59dz3Swift/extendLifetime(_:)