Menu

Unit Table Library / News: Recent posts

version 0.0.1

This is a first alpha release. Very unfinished. No documentation. See tests/ to view use patterns. Basically it goes something like so:

#include <unitlib/unit.hpp>
#include <unitlib/unit_quantity.hpp>
#include <unitlib/basic_quantity.hpp>
#include <unitlib/dimensions.hpp>
#include <unitlib/metafunc/is_quantity_operand.hpp>
#include <iostream>

int main()
{
using namespace unitlib;
using dimensions::length;
std::cout << metafunc::is_quantity_operand<basic_quantity<length> >::type::value << std::endl;
std::cout << metafunc::is_quantity_operand<int>type::value << std::endl;... read more

Posted by Noah Roberts 2007-01-25
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.