Partial functions

suggest change

Introduction

As you probably know if you came from OOP school, specializing an abstract class and use it is a practice you should keep in mind when writing your code.

What if you could define an abstract function and specialize it in order to create different versions of it? Thinks it as a sort of function Inheritance where you bind specific params to make them reliable for a specific scenario.

Syntax

Parameters

Param | details | —— | —— | x | the number to be raised | y | the exponent | raise | the function to be specialized |

Remarks

As stated in Python doc the functools.partial:

Return a new partial object which when called will behave like func called with the positional arguments args and keyword arguments keywords. If more arguments are supplied to the call, they are appended to args. If additional keyword arguments are supplied, they extend and override keywords.

Check this link to see how partial can be implemented.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents