Tag

function parameters

1 views collected around this technical thread.

Test Development Learning Exchange
Test Development Learning Exchange
Jun 2, 2024 · Backend Development

Python Function Parameter Techniques for API Automation Testing

This article explores various Python function parameter techniques including positional, keyword, default, variable arguments, and parameter unpacking to enhance flexibility and reusability in API automation testing.

API testingbackend developmentcode examples
0 likes · 4 min read
Python Function Parameter Techniques for API Automation Testing
php中文网 Courses
php中文网 Courses
Dec 29, 2023 · Backend Development

Understanding PHP Function Parameter Passing: Pass-by-Value, Pass-by-Reference, Default and Variable‑Length Arguments

This article explains PHP function parameter passing, covering pass‑by‑value versus pass‑by‑reference, how to define functions with multiple, default, and variable‑length arguments, and provides clear code examples illustrating each technique for backend developers.

PHPdefault argumentsfunction parameters
0 likes · 4 min read
Understanding PHP Function Parameter Passing: Pass-by-Value, Pass-by-Reference, Default and Variable‑Length Arguments
IT Services Circle
IT Services Circle
Feb 5, 2022 · Fundamentals

Understanding && in C++: Rvalue References, Forwarding References, and Their Use as Function Parameters

The article explains the different meanings of the && operator in C++—as a true rvalue reference in non‑template functions, as a forwarding (universal) reference in templates, and its behavior when binding to function return values—illustrated with code examples and practical guidelines.

Cforwarding referencefunction parameters
0 likes · 5 min read
Understanding && in C++: Rvalue References, Forwarding References, and Their Use as Function Parameters
Python Programming Learning Circle
Python Programming Learning Circle
Apr 20, 2021 · Fundamentals

Understanding Python Function Parameter Passing: Value vs. Reference

This article explains how Python implements function argument passing, distinguishing value passing—where a copy of the argument is used—from reference passing for mutable objects, illustrating both mechanisms with swap examples, memory diagrams, and concluding with best practices for modifying data inside functions.

function parametersmutable-objectsreference passing
0 likes · 10 min read
Understanding Python Function Parameter Passing: Value vs. Reference