Explore >> Select a destination


You are here

double-trouble.dev
| | alexop.dev
3.0 parsecs away

Travel
| | Learn how to extract all keys, including nested ones, from TypeScript objects using advanced type manipulation techniques. Improve your TypeScript skills and write safer code.
| | newdevsguide.com
5.0 parsecs away

Travel
| | Modern C# gives us advanced nullability checking. Let's take a look at C# nullability and the !, ?, ??, and ??= operators that support it.
| | mariusschulz.com
3.5 parsecs away

Travel
| | TypeScript 2.0 implements control flow based type analysis to determine the most specific type for a variable or parameter at any given location. An explanation.
| | davidbieber.com
30.3 parsecs away

Travel
| The implementation of hoist in my earlier snippet returned the values of local variables of all functions called by the hoisted function. This new version only returns the locals of the hoisted function. As before, you can use it like this: def f(x): y = x + 1 z = y * 2 return z + 1 f(4) == 11 hoist(f)(4) == {'x': 4, 'y': 5, 'z': 10, 'return': 11} Here's another usage example: