Skip to main content

17 docs tagged with "functions"

View all tags

Function Call

Learn how to invoke functions in various programming languages.

Function Composition

Learn about function composition and how to combine multiple functions into one in C++ and Python.

Function Currying

Learn about function currying and how it enables the transformation of functions for better modularity and reusability.

Function Memoization

Learn about function memoization, a technique to optimize performance by caching results of expensive function calls.

Function Overloading

Understand the concept of function overloading in various programming languages.

Function Return

Learn about how functions return values in various programming languages.

Function Scope

Learn about variable scope within functions and how it affects accessibility.

Functions

Learn about functions and how to create and use them in JavaScript, Java, Python, and C++. Understand function declarations, parameters, return values, and best practices.

Functions in C++

Master functions in C++. Learn function declaration, definition, prototypes, parameters passing mechanics (pass-by-value vs pass-by-reference), and the anatomy of execution memory.

Functions in Go

Understand how to define and use functions, including multiple return values in Go.