Skip to content

Instantly share code, notes, and snippets.

@timbaev
Created February 27, 2021 07:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timbaev/3fd39de5b792621548fe37d310498f63 to your computer and use it in GitHub Desktop.
Save timbaev/3fd39de5b792621548fe37d310498f63 to your computer and use it in GitHub Desktop.
[Class] #memorySwift
class PaidService {
let id: String
let name: String
let isActive: Bool
let expiresAt: Date?
}
MemoryLayout<PaidService>.size // 8
MemoryLayout<PaidService>.alignment // 8
MemoryLayout<PaidService>.stride // 8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment