A complete gdb to lldb command map.
- Print object
(lldb) po responseObject
(lldb) po [responseObject objectForKey@"state"]
- p - Print primitive type
A complete gdb to lldb command map.
(lldb) po responseObject
(lldb) po [responseObject objectForKey@"state"]
// See how to use it at the bottom of this file | |
// Helper struct for sequenceDiff | |
public struct SequenceDiff<T1, T2> { | |
public let common: [(T1, T2)] | |
public let removed: [T1] | |
public let inserted: [T2] | |
public init(common: [(T1, T2)] = [], removed: [T1] = [], inserted: [T2] = []) { | |
self.common = common | |
self.removed = removed |