Explore >> Select a destination


You are here

aroberge.blogspot.com
| | blog.ian.stapletoncordas.co
83.3 parsecs away

Travel
| |
| | thepythoncorner.com
83.3 parsecs away

Travel
| | Hi Guys, in today's article, we will discuss Python decorators. Decorators are not a python-only feature, they exist in many other languages and are important if you aim to write clean, professional, and reusable code. A decorator is a function that extends other functions that are passed as a parameter, adding new features without the need of changing their code. This can seem a little magical to a beginner's eye, but it's really easy actually because all you have to do is to create a function (the so-called "decorator function") that takes another function as an argument (the "decorated function")...
| | benhoyt.com
71.4 parsecs away

Travel
| | Principles I've found useful for designing good Python library APIs, including structure, naming, error handling, and type annotations.
| | danielpecos.com
97.2 parsecs away

Travel
| Purpose of this post is to providea glimpse of the new features included in Java 8 that shiftthis language towards a more Functional Programming paradigm. But before, let's define what we understand for Functional Programming (FP). Functional programming key characteristics include: Higher Order Functions Pure Functions and Immutability Tail Call Recursion Higher Order Functions for a FP language means that functions are considered first class citizens, allowing the programmer to use them as any other value the language defines, for example, a Function value: