Skip to content

Instantly share code, notes, and snippets.

@distributedlife
Last active December 28, 2015 20:48
Show Gist options
  • Select an option

  • Save distributedlife/7559563 to your computer and use it in GitHub Desktop.

Select an option

Save distributedlife/7559563 to your computer and use it in GitHub Desktop.
distributedlife.com blog post snippets
-The test team branch
|-The Name of the System
| |-quick-test
float reciprocal (const float ex) {
return (1.0f / ex);
}
void push(const value_type& _Val)
{
// insert element at beginning
c.push_back(_Val);
}
void pop()
{
// erase element at end
c.pop_front();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment