This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct NonSendable { | |
} | |
@available(*, unavailable) | |
extension NonSendable: Sendable { | |
} | |
actor MyActor { | |
let nonSendable: NonSendable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extension Sequence { | |
func asyncMap<T>(_ transform: @escaping (Element) async -> T) async -> [T] { | |
return await withTaskGroup(of: T.self) { group in | |
var transformedElements = [T]() | |
for element in self { | |
group.addTask { | |
return await transform(element) | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func testCurrentYearAppearsInInfoPlistCopyright() throws { | |
let bundle = Bundle(for: AppDelegate.self) | |
let plist = try XCTUnwrap(bundle.localizedInfoDictionary) | |
let string = try XCTUnwrap(plist["NSHumanReadableCopyright"] as? String) | |
let formatter = DateFormatter() | |
formatter.dateFormat = "yyyy" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return ( | |
<MultiChildComponent> | |
<ChildNode key="child1"> | |
<span>Yo</span> | |
</ChildNode> | |
<ChildNode key="child2"> | |
<span>Dawg</span> | |
</ChildNode> | |
</MultiChildComponent> | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// clang -arch armv7 -framework Foundation -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk -S arm-test.m -o armv7-test.s | |
#import <Foundation/Foundation.h> | |
int main(const int argc, const char* const* argv) { | |
@autoreleasepool { | |
NSString* string; | |
string = @"hello"; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// clang -framework Foundation -c properties.m | |
#import <Foundation/Foundation.h> | |
@interface PropertyBug : NSObject { | |
NSString* _value; | |
} | |
@property (copy) NSString* value; |
NewerOlder