Explore >> Select a destination


You are here

nondv.wtf
| | rcoh.me
13.2 parsecs away

Travel
| | Russell Cohen's Blog and Website
| | www.poberezkin.com
18.4 parsecs away

Travel
| | Evgeny Poberezkin's blog
| | nurkiewicz.com
18.4 parsecs away

Travel
| | Clojure is a dynamically, strongly typed programming language. It's a dialect of _Lisp_ running on the Java Virtual Machine. Lisp is 6 decades old and has a really weird syntax. That weird syntax is called _Polish prefix notation_. Basically, in every other language you've used math operators like plus or minus are infix. It means they are placed between operands. For example, `1 + 2`. In Clojure, you always put the operator (or any other function for that matter) in front. So simple addition becomes... `+ 1 2`.
| | www.foonathan.net
102.7 parsecs away

Travel
| Just like regular function parameters, template parameters can also have default parameters. For class templates, this behaves mostly just like default function arguments: if you pass fewer template arguments than required, default template arguments are used to fill the remaining places. However, for function templates, it gets more complicated as template parameters for functions can be deduced by the normal function arguments. This leads to some interesting side-effects. In particular, default argumen...