Explore >> Select a destination


You are here

williamboles.com
| | blog.metaobject.com
5.6 parsecs away

Travel
| | I just finished watching Daniel Lemire's talk on the current iteration of simdjson , a JSON parser that clocks in at 2.5GB/s! I've been fol...
| | benoitpasquier.com
2.5 parsecs away

Travel
| | It's been almost two years that Combine has been introduced to the Apple developer community. As many developer, you want to migrate your codebase to it. You don't want to be left behind but you're not sure where to start, maybe not sure if you want to jump to SwiftUI either. Nothing to worry, let's see step by step how to migrate an iOS sample app using UIKit and RxSwift to Combine.
| | www.enekoalonso.com
1.3 parsecs away

Travel
| | Swift's Codable protocol (together with Encodable and Decodable) was introduced in Xcode 9 with Swift 4. This changed for good how we encode and decode JSON....
| | entangledlogs.com
44.7 parsecs away

Travel
| Generic Programming: Generating part of programs Introduction Generic Programming: Programming with generic parameters to avoid unnecessary code duplication and encourage code reuse. Polymorphism is also another technique to solve code reuse Puts implicit constraints on the generic types that are to be fulfilled by concrete types. template T adder(T LHS, T RHS) { return LHS + RHS; } struct Foo { inv Val = 0; } Foo f = adder(Foo{}, Foo{}): In this code snippet, we assume that Foo meets the requirement tha...