Explore >> Select a destination


You are here

blog.bencope.land
| | culttt.com
9.8 parsecs away

Travel
| | Elixir is a functional programming language which makes use of the Pipe Operator to simplify the combining of functions and data transformations.
| | pagefault.se
15.2 parsecs away

Travel
| | At work I program almost exclusively in Go (sometimes I need to step in and to some javascript, typscript and, shudders perl...). If I want to compare two values I simply pull out the trusty old == operator. Sure for slices and maps you can't use that, but fortunately since 1.23 we can just use the slices.Equal and maps.Equal functions. In go == is the catch-all (or catch-90%) when you need to know if two values are equal.
| | ricardo.cc
13.6 parsecs away

Travel
| | Stories about code, design, coffee and other good stuff.
| | attractivechaos.wordpress.com
43.4 parsecs away

Travel
| Array and hash table are probably the most important data structures. Some programming languages such as Perl, Lua and Javascript, almost build the language core on top of the two data structures. While array is straightforward to implement, hash table is not. This is why we have paid continuous efforts in improving the hash table...