Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 466 Bytes

example.md

File metadata and controls

18 lines (15 loc) · 466 Bytes

someFunc

Multiplies every number in the collection of given input numbers by the given multiplier

auto times(const std::vector<int>& _v, const int& _multiplier)

PARAMETERS:

NAME TYPE DESCRIPTION
_v std::vector Collection of integers
_multiplier int Amount to multiply every number by

RETURN VALUE:

TYPE DESCRIPTION
std::vector Collection of results