/usr/include/libelemental/value.tcc is in libelemental-dev 1.2.0-9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 | /*
* This file is part of libelemental, a periodic table library with detailed
* information on elements.
*
* Copyright (C) 2006-2007 Kevin Daughtridge <kevin@kdau.com>
* Copyright (C) 2003 Jonas Frantz <jonas.frantz@welho.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LIBELEMENTAL__VALUE_TCC
#define LIBELEMENTAL__VALUE_TCC
#ifndef LIBELEMENTAL__VALUE_HH
#error "value.tcc must be included from value.hh."
#endif
namespace Elemental {
//******************************************************************************
// class Value<T>
template<class T>
template<class S>
Value<T>::Value (const S& source, Qualifier qualifier_)
: value_base (qualifier_), value (source)
{}
template<class T>
template<class S>
Value<T>::Value (const Value<S>& source)
: value_base (source.qualifier), value (source.value)
{}
template<class T>
Value<T>::Value (Qualifier qualifier_) throw ()
: value_base (qualifier_)
{}
template<class T>
Value<T>::~Value ()
{}
template<class T>
int
Value<T>::compare (const value_base& other) const throw ()
{
int base = compare_base (other);
if (base != YIELD_COMPARE) return base;
const Value<T> *like_other = dynamic_cast<const Value<T>*> (&other);
if (like_other != NULL)
{
if (value < like_other->value)
return -1;
else if (value > like_other->value)
return 1;
else
return 0;
}
return 0;
}
template<class T>
ustring
Value<T>::do_get_string (const ustring& format) const throw ()
{
if (format.empty ())
return compose::ucompose1 (value, std::numeric_limits<T>::digits10);
else
return compose::UComposition (format)
.precision (std::numeric_limits<T>::digits10)
.arg (value).str ();
}
//******************************************************************************
// class ValueList<T>
template<class T>
template<class S>
ValueList<T>::ValueList (const S source[], int count, Qualifier qualifier_)
: value_base (qualifier_)
{
for (int i = 0; i < count; ++i)
values.push_back (T (source[i]));
}
template<class T>
template<class S>
ValueList<T>::ValueList (const ValueList<S>& source)
: value_base (source.qualifier)
{
for (typename std::vector<S>::const_iterator i = source.values.begin ();
i != source.values.end (); ++i)
values.push_back (T (*i));
}
template<class T>
ValueList<T>::ValueList (Qualifier qualifier_) throw ()
: value_base (qualifier_)
{}
template<class T>
ValueList<T>::~ValueList ()
{}
template<class T>
int
ValueList<T>::compare (const value_base& other) const throw ()
{
int base = compare_base (other);
if (base != YIELD_COMPARE) return base;
const ValueList<T> *like_other = dynamic_cast<const ValueList<T>*> (&other);
if (like_other != NULL)
{
if (values < like_other->values)
return -1;
else if (values > like_other->values)
return 1;
else
return 0;
}
return 0;
}
template<class T>
ustring
ValueList<T>::do_get_string (const ustring& format) const throw ()
{
ustring result;
for (typename std::vector<T>::const_iterator i = values.begin ();
i != values.end (); ++i)
{
if (i != values.begin ())
result += get_list_separator ();
if (format.empty ())
result += compose::ucompose1
(*i, std::numeric_limits<T>::digits10);
else
result += compose::UComposition (format)
.precision (std::numeric_limits<T>::digits10)
.arg (*i).str ();
}
return result;
}
} // namespace Elemental
#endif // LIBELEMENTAL__VALUE_TCC
|