DEV Community

Discussion on: Welcome Thread - v31

Collapse
 
zacharypatten profile image
Zachary Patten

Howdy. I'm Zack. I love teaching people how to code as well as seeing other peoples' code to stay up to date. I have used a lot of languages, but I prefer C#. I have an open source project with examples and code useful for biginners and pros alike.

ZacharyPatten / Towel

Throw in the towel.

Towel

"It's a tough galaxy. If you want to survive, you've gotta know... where your towel is." - Ford Prefect

Towel is a C# .Net Standard libary intended to add much needed functionality that is missing in C# as well as redesign some aspects to bring the language up to modern standards.

Status

Build Build Status

Many features are coded and working, but Towel is still in heavy development. It should be ready for its first release later this year.

Mathematics

Towel has fast generic mathematics functions.

Fundamental Operations

T Add<T>(T a, T b)
T Negate<T>(T a)
T Subtract<T>(T a, T b)
T Multiply<T>(T a, T b);
T Divide<T>(T a, T b);
T Modulo<T>(T a, T b);

Feel free to ask me questions. :)