From 5d4e7d79af1e2514618a5fce1c8bb6cb71d970c4 Mon Sep 17 00:00:00 2001 From: jfalcou Date: Wed, 23 Aug 2023 07:49:15 +0000 Subject: [PATCH] deploy: 57b8c4140fc1629d149117fc45f1f577804f4ecc --- group__functions.html | 12 + ...ns_ga1b78fa57857ad714ce5f0e6e3ace5db9.html | 218 ++++++++++++++++++ ...ns_ga265f03cd0d4edaaecd88fbcfc3346644.html | 218 ++++++++++++++++++ ...ns_ga5354d486ec4fca0c8261639b8ccfffd7.html | 218 ++++++++++++++++++ ...ns_gae8a89a63722b9cdec2f2d4daf58bf025.html | 218 ++++++++++++++++++ namespacekyosu.html | 12 + search/all_2.js | 5 +- search/all_4.js | 25 +- search/all_8.js | 2 +- search/all_9.js | 10 +- search/all_a.js | 11 +- search/all_b.js | 3 +- search/all_c.js | 4 +- search/all_d.js | 6 +- search/all_e.js | 7 + search/searchdata.js | 4 +- search/variables_2.js | 5 +- search/variables_4.js | 25 +- search/variables_8.js | 2 +- search/variables_9.js | 2 +- search/variables_a.js | 3 +- search/variables_b.js | 3 +- search/variables_c.js | 4 +- search/variables_d.js | 5 + search/variables_e.js | 5 + 25 files changed, 970 insertions(+), 57 deletions(-) create mode 100644 group__functions_ga1b78fa57857ad714ce5f0e6e3ace5db9.html create mode 100644 group__functions_ga265f03cd0d4edaaecd88fbcfc3346644.html create mode 100644 group__functions_ga5354d486ec4fca0c8261639b8ccfffd7.html create mode 100644 group__functions_gae8a89a63722b9cdec2f2d4daf58bf025.html create mode 100644 search/all_e.js create mode 100644 search/variables_d.js create mode 100644 search/variables_e.js diff --git a/group__functions.html b/group__functions.html index ad39f1fc..69043d3b 100644 --- a/group__functions.html +++ b/group__functions.html @@ -142,6 +142,9 @@ constexpr tags::callable_conj kyosu::conj = {}  Computes the conjugate value.
  +constexpr tags::callable_dec kyosu::dec = {} + decrements the argument by 1.
+  constexpr tags::callable_dist kyosu::dist = {}  Computes the distance between the two parameters.
  @@ -157,6 +160,9 @@ constexpr tags::callable_ipart kyosu::imag = {}  Alias for ipart.
  +constexpr tags::callable_inc kyosu::inc = {} + Increments the argument.
+  constexpr tags::callable_is_denormal kyosu::is_denormal = {}  test if the parameter is denormal.
  @@ -202,9 +208,15 @@ constexpr tags::callable_lerp kyosu::lerp = {}  Computes the linear interpolation.
  +constexpr tags::callable_minus kyosu::minus = {} + Computes the opposite value.
+  constexpr tags::callable_nearest kyosu::nearest = {}  Computes the nearest value.
  +constexpr tags::callable_oneminus kyosu::oneminus = {} + Computes the value 1 minus the argument.
+  constexpr tags::callable_purepart kyosu::purepart = {}  Extracts the pure part of a value.
  diff --git a/group__functions_ga1b78fa57857ad714ce5f0e6e3ace5db9.html b/group__functions_ga1b78fa57857ad714ce5f0e6e3ace5db9.html new file mode 100644 index 00000000..c3180bf9 --- /dev/null +++ b/group__functions_ga1b78fa57857ad714ce5f0e6e3ace5db9.html @@ -0,0 +1,218 @@ + + + + + + + + +kyosu: kyosu::minus + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
kyosu v0.1.0 +
+
Complex Without Complexes
+
+ +   + + + + +
+
+
+ + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +

◆ minus

+ +
+
+ + + + + +
+ + + + +
kyosu::minus = {}
+
+inlineconstexpr
+
+ +

Computes the opposite value.

+

Defined in Header

+
#include <kyosu/functions.hpp>
+

Callable Signatures

+
namespace kyosu
+
{
+
template<kyosu::concepts::cayley_dickson T> constexpr T minus(T z) noexcept;
+
template<eve::ordered_value T> constexpr T minus(T z) noexcept;
+
}
+
constexpr tags::callable_minus minus
Computes the opposite value.
Definition: minus.hpp:73
+
Main KYOSU namespace.
Definition: types.hpp:14
+

Parameters

+
    +
  • z : Value to minusugate.
  • +
+

Return value

+

Returns the opposite of its argument.

+

Example

+
#include <kyosu/kyosu.hpp>
+
#include <eve/wide.hpp>
+
#include <iostream>
+
+
int main()
+
{
+
using kyosu::minus;
+ +
using kyosu::quaternion;
+
using e_t = float;
+
using c_t = complex<float>;
+
using q_t = quaternion<float>;
+
using we_t = eve::wide<e_t, eve::fixed<2>>;
+
using wc_t = eve::wide<c_t, eve::fixed<2>>;
+
using wq_t = eve::wide<q_t, eve::fixed<2>>;
+
+
std::cout << "Real: \n";
+
e_t e(72.9f);
+
we_t we = we_t(e);
+
std::cout << e << " -> " << minus(e) << "\n";
+
std::cout << we << " -> " << minus(we) << "\n";
+
+
std::cout << "Complex: \n";
+
c_t c(3.5f,-2.9f);
+
wc_t wc = wc_t(c);
+
std::cout << c << " -> " << minus(c) << "\n";
+
std::cout << wc << " -> " << minus(wc) << "\n";
+
+
std::cout << "Quaternion: \n";
+
q_t q(3.5f,-2.9f, 2.1f, 3.2f);
+
wq_t wq = wq_t(q);
+
std::cout << q << " -> " << minus(q) << "\n";
+
std::cout << wq << " -> " << minus(wq) << "\n";
+
+
return 0;
+
}
+
cayley_dickson< T, 2 > complex
Type alias for complex numbers.
Definition: complex.hpp:26
+
+
+
+
+
+ + + + + + + + + + diff --git a/group__functions_ga265f03cd0d4edaaecd88fbcfc3346644.html b/group__functions_ga265f03cd0d4edaaecd88fbcfc3346644.html new file mode 100644 index 00000000..182d1674 --- /dev/null +++ b/group__functions_ga265f03cd0d4edaaecd88fbcfc3346644.html @@ -0,0 +1,218 @@ + + + + + + + + +kyosu: kyosu::dec + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
kyosu v0.1.0 +
+
Complex Without Complexes
+
+ +   + + + + +
+
+
+ + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +

◆ dec

+ +
+
+ + + + + +
+ + + + +
kyosu::dec = {}
+
+inlineconstexpr
+
+ +

decrements the argument by 1.

+

Defined in Header

+
#declude <kyosu/functions.hpp>
+

Callable Signatures

+
namespace kyosu
+
{
+
template<kyosu::concepts::cayley_dickson T> constexpr T dec(T z) noexcept;
+
template<eve::ordered_value T> constexpr T dec(T z) noexcept;
+
}
+
constexpr tags::callable_dec dec
decrements the argument by 1.
Definition: dec.hpp:72
+
Main KYOSU namespace.
Definition: types.hpp:14
+

Parameters

+
    +
  • z : Value to decrement.
  • +
+

Return value

+

Returns its argument minus 1.

+

Example

+
#include <kyosu/kyosu.hpp>
+
#include <eve/wide.hpp>
+
#include <iostream>
+
+
int main()
+
{
+
using kyosu::dec;
+ +
using kyosu::quaternion;
+
using e_t = float;
+
using c_t = complex<float>;
+
using q_t = quaternion<float>;
+
using we_t = eve::wide<e_t, eve::fixed<2>>;
+
using wc_t = eve::wide<c_t, eve::fixed<2>>;
+
using wq_t = eve::wide<q_t, eve::fixed<2>>;
+
+
std::cout << "Real: \n";
+
e_t e(72.9f);
+
we_t we = we_t(e);
+
std::cout << e << " -> " << dec(e) << "\n";
+
std::cout << we << " -> " << dec(we) << "\n";
+
+
std::cout << "Complex: \n";
+
c_t c(3.5f,-2.9f);
+
wc_t wc = wc_t(c);
+
std::cout << c << " -> " << dec(c) << "\n";
+
std::cout << wc << " -> " << dec(wc) << "\n";
+
+
std::cout << "Quaternion: \n";
+
q_t q(3.5f,-2.9f, 2.1f, 3.2f);
+
wq_t wq = wq_t(q);
+
std::cout << q << " -> " << dec(q) << "\n";
+
std::cout << wq << " -> " << dec(wq) << "\n";
+
+
return 0;
+
}
+
cayley_dickson< T, 2 > complex
Type alias for complex numbers.
Definition: complex.hpp:26
+
+
+
+
+
+ + + + + + + + + + diff --git a/group__functions_ga5354d486ec4fca0c8261639b8ccfffd7.html b/group__functions_ga5354d486ec4fca0c8261639b8ccfffd7.html new file mode 100644 index 00000000..142d625a --- /dev/null +++ b/group__functions_ga5354d486ec4fca0c8261639b8ccfffd7.html @@ -0,0 +1,218 @@ + + + + + + + + +kyosu: kyosu::inc + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
kyosu v0.1.0 +
+
Complex Without Complexes
+
+ +   + + + + +
+
+
+ + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +

◆ inc

+ +
+
+ + + + + +
+ + + + +
kyosu::inc = {}
+
+inlineconstexpr
+
+ +

Increments the argument.

+

Defined in Header

+
#include <kyosu/functions.hpp>
+

Callable Signatures

+
namespace kyosu
+
{
+
template<kyosu::concepts::cayley_dickson T> constexpr T inc(T z) noexcept;
+
template<eve::ordered_value T> constexpr T inc(T z) noexcept;
+
}
+
constexpr tags::callable_inc inc
Increments the argument.
Definition: inc.hpp:72
+
Main KYOSU namespace.
Definition: types.hpp:14
+

Parameters

+
    +
  • z : Value to increment.
  • +
+

Return value

+

Returns its argument plus 1.

+

Example

+
#include <kyosu/kyosu.hpp>
+
#include <eve/wide.hpp>
+
#include <iostream>
+
+
int main()
+
{
+
using kyosu::inc;
+ +
using kyosu::quaternion;
+
using e_t = float;
+
using c_t = complex<float>;
+
using q_t = quaternion<float>;
+
using we_t = eve::wide<e_t, eve::fixed<2>>;
+
using wc_t = eve::wide<c_t, eve::fixed<2>>;
+
using wq_t = eve::wide<q_t, eve::fixed<2>>;
+
+
std::cout << "Real: \n";
+
e_t e(72.9f);
+
we_t we = we_t(e);
+
std::cout << e << " -> " << inc(e) << "\n";
+
std::cout << we << " -> " << inc(we) << "\n";
+
+
std::cout << "Complex: \n";
+
c_t c(3.5f,-2.9f);
+
wc_t wc = wc_t(c);
+
std::cout << c << " -> " << inc(c) << "\n";
+
std::cout << wc << " -> " << inc(wc) << "\n";
+
+
std::cout << "Quaternion: \n";
+
q_t q(3.5f,-2.9f, 2.1f, 3.2f);
+
wq_t wq = wq_t(q);
+
std::cout << q << " -> " << inc(q) << "\n";
+
std::cout << wq << " -> " << inc(wq) << "\n";
+
+
return 0;
+
}
+
cayley_dickson< T, 2 > complex
Type alias for complex numbers.
Definition: complex.hpp:26
+
+
+
+
+
+ + + + + + + + + + diff --git a/group__functions_gae8a89a63722b9cdec2f2d4daf58bf025.html b/group__functions_gae8a89a63722b9cdec2f2d4daf58bf025.html new file mode 100644 index 00000000..e39eeedc --- /dev/null +++ b/group__functions_gae8a89a63722b9cdec2f2d4daf58bf025.html @@ -0,0 +1,218 @@ + + + + + + + + +kyosu: kyosu::oneminus + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
kyosu v0.1.0 +
+
Complex Without Complexes
+
+ +   + + + + +
+
+
+ + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +

◆ oneminus

+ +
+
+ + + + + +
+ + + + +
kyosu::oneminus = {}
+
+inlineconstexpr
+
+ +

Computes the value 1 minus the argument.

+

Defined in Header

+
#oneminuslude <kyosu/functions.hpp>
+

Callable Signatures

+
namespace kyosu
+
{
+
template<kyosu::concepts::cayley_dickson T> constexpr T oneminus(T z) noexcept;
+
template<eve::ordered_value T> constexpr T oneminus(T z) noexcept;
+
}
+
constexpr tags::callable_oneminus oneminus
Computes the value 1 minus the argument.
Definition: oneminus.hpp:72
+
Main KYOSU namespace.
Definition: types.hpp:14
+

Parameters

+
    +
  • z : argument.
  • +
+

Return value

+

Returns 1 minus the argument.

+

Example

+
#include <kyosu/kyosu.hpp>
+
#include <eve/wide.hpp>
+
#include <iostream>
+
+
int main()
+
{
+ + +
using kyosu::quaternion;
+
using e_t = float;
+
using c_t = complex<float>;
+
using q_t = quaternion<float>;
+
using we_t = eve::wide<e_t, eve::fixed<2>>;
+
using wc_t = eve::wide<c_t, eve::fixed<2>>;
+
using wq_t = eve::wide<q_t, eve::fixed<2>>;
+
+
std::cout << "Real: \n";
+
e_t e(72.9f);
+
we_t we = we_t(e);
+
std::cout << e << " -> " << oneminus(e) << "\n";
+
std::cout << we << " -> " << oneminus(we) << "\n";
+
+
std::cout << "Complex: \n";
+
c_t c(3.5f,-2.9f);
+
wc_t wc = wc_t(c);
+
std::cout << c << " -> " << oneminus(c) << "\n";
+
std::cout << wc << " -> " << oneminus(wc) << "\n";
+
+
std::cout << "Quaternion: \n";
+
q_t q(3.5f,-2.9f, 2.1f, 3.2f);
+
wq_t wq = wq_t(q);
+
std::cout << q << " -> " << oneminus(q) << "\n";
+
std::cout << wq << " -> " << oneminus(wq) << "\n";
+
+
return 0;
+
}
+
cayley_dickson< T, 2 > complex
Type alias for complex numbers.
Definition: complex.hpp:26
+
+
+
+
+
+ + + + + + + + + + diff --git a/namespacekyosu.html b/namespacekyosu.html index 71363b8c..26b1cb05 100644 --- a/namespacekyosu.html +++ b/namespacekyosu.html @@ -266,6 +266,9 @@ constexpr tags::callable_conj conj = {}  Computes the conjugate value.
  +constexpr tags::callable_dec dec = {} + decrements the argument by 1.
+  template<typename T > constexpr unsigned int dimension_v = *implementation-defined*  Obtains the number of dimensions of the algebra containing a given type.
@@ -285,6 +288,9 @@ constexpr tags::callable_ipart imag = {}  Alias for ipart.
  +constexpr tags::callable_inc inc = {} + Increments the argument.
+  constexpr tags::callable_is_denormal is_denormal = {}  test if the parameter is denormal.
  @@ -330,9 +336,15 @@ constexpr tags::callable_lerp lerp = {}  Computes the linear interpolation.
  +constexpr tags::callable_minus minus = {} + Computes the opposite value.
+  constexpr tags::callable_nearest nearest = {}  Computes the nearest value.
  +constexpr tags::callable_oneminus oneminus = {} + Computes the value 1 minus the argument.
+  constexpr tags::callable_purepart purepart = {}  Extracts the pure part of a value.
  diff --git a/search/all_2.js b/search/all_2.js index 948df468..8cab533c 100644 --- a/search/all_2.js +++ b/search/all_2.js @@ -1,5 +1,6 @@ var searchData= [ - ['dimension_5fv_0',['dimension_v',['../group__traits_gab76e6a5196c280967c692c2139d8301e.html#gab76e6a5196c280967c692c2139d8301e',1,'kyosu']]], - ['dist_1',['dist',['../group__functions_ga3c49606902ab917444da4ac9ed3003ce.html#ga3c49606902ab917444da4ac9ed3003ce',1,'kyosu']]] + ['dec_0',['dec',['../group__functions_ga265f03cd0d4edaaecd88fbcfc3346644.html#ga265f03cd0d4edaaecd88fbcfc3346644',1,'kyosu']]], + ['dimension_5fv_1',['dimension_v',['../group__traits_gab76e6a5196c280967c692c2139d8301e.html#gab76e6a5196c280967c692c2139d8301e',1,'kyosu']]], + ['dist_2',['dist',['../group__functions_ga3c49606902ab917444da4ac9ed3003ce.html#ga3c49606902ab917444da4ac9ed3003ce',1,'kyosu']]] ]; diff --git a/search/all_4.js b/search/all_4.js index 585251d1..83cc401f 100644 --- a/search/all_4.js +++ b/search/all_4.js @@ -2,16 +2,17 @@ var searchData= [ ['if_5felse_0',['if_else',['../group__functions_ga6d65485712648eb40b8dc0453d9c3baf.html#ga6d65485712648eb40b8dc0453d9c3baf',1,'kyosu']]], ['imag_1',['imag',['../group__functions_ga8e88be0e83296a515c882ad40e828386.html#ga8e88be0e83296a515c882ad40e828386',1,'kyosu']]], - ['is_5fdenormal_2',['is_denormal',['../group__functions_ga1410062f3325c9a4b687d12f5ae53f55.html#ga1410062f3325c9a4b687d12f5ae53f55',1,'kyosu']]], - ['is_5fequal_3',['is_equal',['../group__functions_gabfab93a2a2b4f527d3c69eeb13856d2c.html#gabfab93a2a2b4f527d3c69eeb13856d2c',1,'kyosu']]], - ['is_5feqz_4',['is_eqz',['../group__functions_ga5ed3799fdd8b66d17a274669dcf3319b.html#ga5ed3799fdd8b66d17a274669dcf3319b',1,'kyosu']]], - ['is_5ffinite_5',['is_finite',['../group__functions_gaca9f3f8f0c75ddbff90aab0785d7a23f.html#gaca9f3f8f0c75ddbff90aab0785d7a23f',1,'kyosu']]], - ['is_5finfinite_6',['is_infinite',['../group__functions_ga9c043e0de4393e03663a8b017f3776d1.html#ga9c043e0de4393e03663a8b017f3776d1',1,'kyosu']]], - ['is_5fnan_7',['is_nan',['../group__functions_ga686170a43d13c97096af719b7c0e7fda.html#ga686170a43d13c97096af719b7c0e7fda',1,'kyosu']]], - ['is_5fnez_8',['is_nez',['../group__functions_ga7ab67d971ae8c2c4d99fe414d6085116.html#ga7ab67d971ae8c2c4d99fe414d6085116',1,'kyosu']]], - ['is_5fnot_5fdenormal_9',['is_not_denormal',['../group__functions_ga8e2d2c2ba91d22a96ff3603b42e4760d.html#ga8e2d2c2ba91d22a96ff3603b42e4760d',1,'kyosu']]], - ['is_5fnot_5fequal_10',['is_not_equal',['../group__functions_ga7bde9020d5e1ce1e69cdb7b011ef0a7d.html#ga7bde9020d5e1ce1e69cdb7b011ef0a7d',1,'kyosu']]], - ['is_5fnot_5ffinite_11',['is_not_finite',['../group__functions_ga441cd97a80d870b01cf6cd1ace7238e7.html#ga441cd97a80d870b01cf6cd1ace7238e7',1,'kyosu']]], - ['is_5fnot_5finfinite_12',['is_not_infinite',['../group__functions_ga3e5656e4788dbebd4450758cba9dab9d.html#ga3e5656e4788dbebd4450758cba9dab9d',1,'kyosu']]], - ['is_5fnot_5fnan_13',['is_not_nan',['../group__functions_gac91bff00b4c1a3c8e0b249a07bd6c080.html#gac91bff00b4c1a3c8e0b249a07bd6c080',1,'kyosu']]] + ['inc_2',['inc',['../group__functions_ga5354d486ec4fca0c8261639b8ccfffd7.html#ga5354d486ec4fca0c8261639b8ccfffd7',1,'kyosu']]], + ['is_5fdenormal_3',['is_denormal',['../group__functions_ga1410062f3325c9a4b687d12f5ae53f55.html#ga1410062f3325c9a4b687d12f5ae53f55',1,'kyosu']]], + ['is_5fequal_4',['is_equal',['../group__functions_gabfab93a2a2b4f527d3c69eeb13856d2c.html#gabfab93a2a2b4f527d3c69eeb13856d2c',1,'kyosu']]], + ['is_5feqz_5',['is_eqz',['../group__functions_ga5ed3799fdd8b66d17a274669dcf3319b.html#ga5ed3799fdd8b66d17a274669dcf3319b',1,'kyosu']]], + ['is_5ffinite_6',['is_finite',['../group__functions_gaca9f3f8f0c75ddbff90aab0785d7a23f.html#gaca9f3f8f0c75ddbff90aab0785d7a23f',1,'kyosu']]], + ['is_5finfinite_7',['is_infinite',['../group__functions_ga9c043e0de4393e03663a8b017f3776d1.html#ga9c043e0de4393e03663a8b017f3776d1',1,'kyosu']]], + ['is_5fnan_8',['is_nan',['../group__functions_ga686170a43d13c97096af719b7c0e7fda.html#ga686170a43d13c97096af719b7c0e7fda',1,'kyosu']]], + ['is_5fnez_9',['is_nez',['../group__functions_ga7ab67d971ae8c2c4d99fe414d6085116.html#ga7ab67d971ae8c2c4d99fe414d6085116',1,'kyosu']]], + ['is_5fnot_5fdenormal_10',['is_not_denormal',['../group__functions_ga8e2d2c2ba91d22a96ff3603b42e4760d.html#ga8e2d2c2ba91d22a96ff3603b42e4760d',1,'kyosu']]], + ['is_5fnot_5fequal_11',['is_not_equal',['../group__functions_ga7bde9020d5e1ce1e69cdb7b011ef0a7d.html#ga7bde9020d5e1ce1e69cdb7b011ef0a7d',1,'kyosu']]], + ['is_5fnot_5ffinite_12',['is_not_finite',['../group__functions_ga441cd97a80d870b01cf6cd1ace7238e7.html#ga441cd97a80d870b01cf6cd1ace7238e7',1,'kyosu']]], + ['is_5fnot_5finfinite_13',['is_not_infinite',['../group__functions_ga3e5656e4788dbebd4450758cba9dab9d.html#ga3e5656e4788dbebd4450758cba9dab9d',1,'kyosu']]], + ['is_5fnot_5fnan_14',['is_not_nan',['../group__functions_gac91bff00b4c1a3c8e0b249a07bd6c080.html#gac91bff00b4c1a3c8e0b249a07bd6c080',1,'kyosu']]] ]; diff --git a/search/all_8.js b/search/all_8.js index 75f94127..47665049 100644 --- a/search/all_8.js +++ b/search/all_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['nearest_0',['nearest',['../group__functions_ga8febd271f0bc94c5fb1d12cd5644778b.html#ga8febd271f0bc94c5fb1d12cd5644778b',1,'kyosu']]] + ['minus_0',['minus',['../group__functions_ga1b78fa57857ad714ce5f0e6e3ace5db9.html#ga1b78fa57857ad714ce5f0e6e3ace5db9',1,'kyosu']]] ]; diff --git a/search/all_9.js b/search/all_9.js index b970c97f..75f94127 100644 --- a/search/all_9.js +++ b/search/all_9.js @@ -1,12 +1,4 @@ var searchData= [ - ['operator_2a_0',['operator*',['../namespacekyosu.html#ab9dc1aa6d08e01a9156d550b7c63b64d',1,'kyosu']]], - ['operator_2a_3d_1',['operator*=',['../namespacekyosu.html#afca2e25a0166a66833f9e0b9a966bfdd',1,'kyosu::operator*=(concepts::cayley_dickson auto &self, eve::ordered_value auto other) noexcept'],['../namespacekyosu.html#a66d806634ef177162197efea5201c84a',1,'kyosu::operator*=(Self &self, Other const &other) noexcept']]], - ['operator_2b_2',['operator+',['../namespacekyosu.html#a9dbe8533599d47d325b4b3c6c43d1309',1,'kyosu::operator+(Z const &z) noexcept'],['../namespacekyosu.html#aa3fbb7e2dc607b914423a63faecbb548',1,'kyosu::operator+(T1 const &a, T2 const &b) noexcept']]], - ['operator_2b_3d_3',['operator+=',['../namespacekyosu.html#a36ba6468989484acaf0706b3be6549fc',1,'kyosu::operator+=(concepts::cayley_dickson auto &self, eve::ordered_value auto other) noexcept'],['../namespacekyosu.html#a896627c7707355adad826b4dfafbd151',1,'kyosu::operator+=(Self &self, Other const &other) noexcept']]], - ['operator_2d_4',['operator-',['../namespacekyosu.html#a57e104c783c5c0900bf0f73e5b16c24d',1,'kyosu::operator-(Z const &z) noexcept'],['../namespacekyosu.html#ab486c7e1ad4577bdffae36e6c8b4a616',1,'kyosu::operator-(T1 const &a, T2 const &b) noexcept']]], - ['operator_2d_3d_5',['operator-=',['../namespacekyosu.html#a84d0923c18d796b6c6b899e24d9e0b77',1,'kyosu::operator-=(concepts::cayley_dickson auto &self, eve::ordered_value auto other) noexcept'],['../namespacekyosu.html#ad78329c7661638f22ba9e18e7eee8710',1,'kyosu::operator-=(Self &self, Other const &other) noexcept']]], - ['operator_2f_6',['operator/',['../namespacekyosu.html#afd449f412c2dbcdfb4839ea3dffee906',1,'kyosu']]], - ['operator_2f_3d_7',['operator/=',['../namespacekyosu.html#a342e9f969d16a50672d99867fcc9fc7a',1,'kyosu::operator/=(concepts::cayley_dickson auto &self, eve::ordered_value auto other) noexcept'],['../namespacekyosu.html#a2374a6326a6dfff79ba4b71ee66efc55',1,'kyosu::operator/=(Self &self, Other const &other) noexcept']]], - ['operator_3c_3c_8',['operator<<',['../namespacekyosu.html#a8db355b94ecea2ef6f8db24adb96d5eb',1,'kyosu']]] + ['nearest_0',['nearest',['../group__functions_ga8febd271f0bc94c5fb1d12cd5644778b.html#ga8febd271f0bc94c5fb1d12cd5644778b',1,'kyosu']]] ]; diff --git a/search/all_a.js b/search/all_a.js index 2bf8842b..6df02190 100644 --- a/search/all_a.js +++ b/search/all_a.js @@ -1,4 +1,13 @@ var searchData= [ - ['purepart_0',['purepart',['../group__functions_ga3d4a351565ed14e9021990fa72f9de4a.html#ga3d4a351565ed14e9021990fa72f9de4a',1,'kyosu']]] + ['oneminus_0',['oneminus',['../group__functions_gae8a89a63722b9cdec2f2d4daf58bf025.html#gae8a89a63722b9cdec2f2d4daf58bf025',1,'kyosu']]], + ['operator_2a_1',['operator*',['../namespacekyosu.html#ab9dc1aa6d08e01a9156d550b7c63b64d',1,'kyosu']]], + ['operator_2a_3d_2',['operator*=',['../namespacekyosu.html#afca2e25a0166a66833f9e0b9a966bfdd',1,'kyosu::operator*=(concepts::cayley_dickson auto &self, eve::ordered_value auto other) noexcept'],['../namespacekyosu.html#a66d806634ef177162197efea5201c84a',1,'kyosu::operator*=(Self &self, Other const &other) noexcept']]], + ['operator_2b_3',['operator+',['../namespacekyosu.html#a9dbe8533599d47d325b4b3c6c43d1309',1,'kyosu::operator+(Z const &z) noexcept'],['../namespacekyosu.html#aa3fbb7e2dc607b914423a63faecbb548',1,'kyosu::operator+(T1 const &a, T2 const &b) noexcept']]], + ['operator_2b_3d_4',['operator+=',['../namespacekyosu.html#a36ba6468989484acaf0706b3be6549fc',1,'kyosu::operator+=(concepts::cayley_dickson auto &self, eve::ordered_value auto other) noexcept'],['../namespacekyosu.html#a896627c7707355adad826b4dfafbd151',1,'kyosu::operator+=(Self &self, Other const &other) noexcept']]], + ['operator_2d_5',['operator-',['../namespacekyosu.html#a57e104c783c5c0900bf0f73e5b16c24d',1,'kyosu::operator-(Z const &z) noexcept'],['../namespacekyosu.html#ab486c7e1ad4577bdffae36e6c8b4a616',1,'kyosu::operator-(T1 const &a, T2 const &b) noexcept']]], + ['operator_2d_3d_6',['operator-=',['../namespacekyosu.html#a84d0923c18d796b6c6b899e24d9e0b77',1,'kyosu::operator-=(concepts::cayley_dickson auto &self, eve::ordered_value auto other) noexcept'],['../namespacekyosu.html#ad78329c7661638f22ba9e18e7eee8710',1,'kyosu::operator-=(Self &self, Other const &other) noexcept']]], + ['operator_2f_7',['operator/',['../namespacekyosu.html#afd449f412c2dbcdfb4839ea3dffee906',1,'kyosu']]], + ['operator_2f_3d_8',['operator/=',['../namespacekyosu.html#a342e9f969d16a50672d99867fcc9fc7a',1,'kyosu::operator/=(concepts::cayley_dickson auto &self, eve::ordered_value auto other) noexcept'],['../namespacekyosu.html#a2374a6326a6dfff79ba4b71ee66efc55',1,'kyosu::operator/=(Self &self, Other const &other) noexcept']]], + ['operator_3c_3c_9',['operator<<',['../namespacekyosu.html#a8db355b94ecea2ef6f8db24adb96d5eb',1,'kyosu']]] ]; diff --git a/search/all_b.js b/search/all_b.js index af30ea2b..2bf8842b 100644 --- a/search/all_b.js +++ b/search/all_b.js @@ -1,5 +1,4 @@ var searchData= [ - ['real_0',['real',['../group__functions_gaa9d12dd4e1420039046c737ddd3240be.html#gaa9d12dd4e1420039046c737ddd3240be',1,'kyosu']]], - ['reldist_1',['reldist',['../group__functions_ga23d96b11ec047300319b6b8ccfa07765.html#ga23d96b11ec047300319b6b8ccfa07765',1,'kyosu']]] + ['purepart_0',['purepart',['../group__functions_ga3d4a351565ed14e9021990fa72f9de4a.html#ga3d4a351565ed14e9021990fa72f9de4a',1,'kyosu']]] ]; diff --git a/search/all_c.js b/search/all_c.js index 800cefba..af30ea2b 100644 --- a/search/all_c.js +++ b/search/all_c.js @@ -1,5 +1,5 @@ var searchData= [ - ['sqr_0',['sqr',['../group__functions_ga6ead34ff89aeb18c2380188af5f83dcd.html#ga6ead34ff89aeb18c2380188af5f83dcd',1,'kyosu']]], - ['sqr_5fabs_1',['sqr_abs',['../group__functions_ga297cbe86ab12760ec934f76879f805d0.html#ga297cbe86ab12760ec934f76879f805d0',1,'kyosu']]] + ['real_0',['real',['../group__functions_gaa9d12dd4e1420039046c737ddd3240be.html#gaa9d12dd4e1420039046c737ddd3240be',1,'kyosu']]], + ['reldist_1',['reldist',['../group__functions_ga23d96b11ec047300319b6b8ccfa07765.html#ga23d96b11ec047300319b6b8ccfa07765',1,'kyosu']]] ]; diff --git a/search/all_d.js b/search/all_d.js index 128c111b..800cefba 100644 --- a/search/all_d.js +++ b/search/all_d.js @@ -1,7 +1,5 @@ var searchData= [ - ['to_5fcomplex_0',['to_complex',['../group__functions_ga467a58e50ffba284e333fac35f5cc93c.html#ga467a58e50ffba284e333fac35f5cc93c',1,'kyosu']]], - ['traits_1',['Traits',['../group__traits.html',1,'']]], - ['trunc_2',['trunc',['../group__functions_ga57a5e1064f03073d3e81144181f6ac71.html#ga57a5e1064f03073d3e81144181f6ac71',1,'kyosu']]], - ['types_3',['Types',['../group__types.html',1,'']]] + ['sqr_0',['sqr',['../group__functions_ga6ead34ff89aeb18c2380188af5f83dcd.html#ga6ead34ff89aeb18c2380188af5f83dcd',1,'kyosu']]], + ['sqr_5fabs_1',['sqr_abs',['../group__functions_ga297cbe86ab12760ec934f76879f805d0.html#ga297cbe86ab12760ec934f76879f805d0',1,'kyosu']]] ]; diff --git a/search/all_e.js b/search/all_e.js new file mode 100644 index 00000000..128c111b --- /dev/null +++ b/search/all_e.js @@ -0,0 +1,7 @@ +var searchData= +[ + ['to_5fcomplex_0',['to_complex',['../group__functions_ga467a58e50ffba284e333fac35f5cc93c.html#ga467a58e50ffba284e333fac35f5cc93c',1,'kyosu']]], + ['traits_1',['Traits',['../group__traits.html',1,'']]], + ['trunc_2',['trunc',['../group__functions_ga57a5e1064f03073d3e81144181f6ac71.html#ga57a5e1064f03073d3e81144181f6ac71',1,'kyosu']]], + ['types_3',['Types',['../group__types.html',1,'']]] +]; diff --git a/search/searchdata.js b/search/searchdata.js index 9fdbe01d..3de6bcbb 100644 --- a/search/searchdata.js +++ b/search/searchdata.js @@ -1,9 +1,9 @@ var indexSectionsWithContent = { - 0: "acdfijklnoprst", + 0: "acdfijklmnoprst", 1: "k", 2: "co", - 3: "acdfijklnprst", + 3: "acdfijklmnoprst", 4: "ac", 5: "ft", 6: "l", diff --git a/search/variables_2.js b/search/variables_2.js index 948df468..8cab533c 100644 --- a/search/variables_2.js +++ b/search/variables_2.js @@ -1,5 +1,6 @@ var searchData= [ - ['dimension_5fv_0',['dimension_v',['../group__traits_gab76e6a5196c280967c692c2139d8301e.html#gab76e6a5196c280967c692c2139d8301e',1,'kyosu']]], - ['dist_1',['dist',['../group__functions_ga3c49606902ab917444da4ac9ed3003ce.html#ga3c49606902ab917444da4ac9ed3003ce',1,'kyosu']]] + ['dec_0',['dec',['../group__functions_ga265f03cd0d4edaaecd88fbcfc3346644.html#ga265f03cd0d4edaaecd88fbcfc3346644',1,'kyosu']]], + ['dimension_5fv_1',['dimension_v',['../group__traits_gab76e6a5196c280967c692c2139d8301e.html#gab76e6a5196c280967c692c2139d8301e',1,'kyosu']]], + ['dist_2',['dist',['../group__functions_ga3c49606902ab917444da4ac9ed3003ce.html#ga3c49606902ab917444da4ac9ed3003ce',1,'kyosu']]] ]; diff --git a/search/variables_4.js b/search/variables_4.js index 585251d1..83cc401f 100644 --- a/search/variables_4.js +++ b/search/variables_4.js @@ -2,16 +2,17 @@ var searchData= [ ['if_5felse_0',['if_else',['../group__functions_ga6d65485712648eb40b8dc0453d9c3baf.html#ga6d65485712648eb40b8dc0453d9c3baf',1,'kyosu']]], ['imag_1',['imag',['../group__functions_ga8e88be0e83296a515c882ad40e828386.html#ga8e88be0e83296a515c882ad40e828386',1,'kyosu']]], - ['is_5fdenormal_2',['is_denormal',['../group__functions_ga1410062f3325c9a4b687d12f5ae53f55.html#ga1410062f3325c9a4b687d12f5ae53f55',1,'kyosu']]], - ['is_5fequal_3',['is_equal',['../group__functions_gabfab93a2a2b4f527d3c69eeb13856d2c.html#gabfab93a2a2b4f527d3c69eeb13856d2c',1,'kyosu']]], - ['is_5feqz_4',['is_eqz',['../group__functions_ga5ed3799fdd8b66d17a274669dcf3319b.html#ga5ed3799fdd8b66d17a274669dcf3319b',1,'kyosu']]], - ['is_5ffinite_5',['is_finite',['../group__functions_gaca9f3f8f0c75ddbff90aab0785d7a23f.html#gaca9f3f8f0c75ddbff90aab0785d7a23f',1,'kyosu']]], - ['is_5finfinite_6',['is_infinite',['../group__functions_ga9c043e0de4393e03663a8b017f3776d1.html#ga9c043e0de4393e03663a8b017f3776d1',1,'kyosu']]], - ['is_5fnan_7',['is_nan',['../group__functions_ga686170a43d13c97096af719b7c0e7fda.html#ga686170a43d13c97096af719b7c0e7fda',1,'kyosu']]], - ['is_5fnez_8',['is_nez',['../group__functions_ga7ab67d971ae8c2c4d99fe414d6085116.html#ga7ab67d971ae8c2c4d99fe414d6085116',1,'kyosu']]], - ['is_5fnot_5fdenormal_9',['is_not_denormal',['../group__functions_ga8e2d2c2ba91d22a96ff3603b42e4760d.html#ga8e2d2c2ba91d22a96ff3603b42e4760d',1,'kyosu']]], - ['is_5fnot_5fequal_10',['is_not_equal',['../group__functions_ga7bde9020d5e1ce1e69cdb7b011ef0a7d.html#ga7bde9020d5e1ce1e69cdb7b011ef0a7d',1,'kyosu']]], - ['is_5fnot_5ffinite_11',['is_not_finite',['../group__functions_ga441cd97a80d870b01cf6cd1ace7238e7.html#ga441cd97a80d870b01cf6cd1ace7238e7',1,'kyosu']]], - ['is_5fnot_5finfinite_12',['is_not_infinite',['../group__functions_ga3e5656e4788dbebd4450758cba9dab9d.html#ga3e5656e4788dbebd4450758cba9dab9d',1,'kyosu']]], - ['is_5fnot_5fnan_13',['is_not_nan',['../group__functions_gac91bff00b4c1a3c8e0b249a07bd6c080.html#gac91bff00b4c1a3c8e0b249a07bd6c080',1,'kyosu']]] + ['inc_2',['inc',['../group__functions_ga5354d486ec4fca0c8261639b8ccfffd7.html#ga5354d486ec4fca0c8261639b8ccfffd7',1,'kyosu']]], + ['is_5fdenormal_3',['is_denormal',['../group__functions_ga1410062f3325c9a4b687d12f5ae53f55.html#ga1410062f3325c9a4b687d12f5ae53f55',1,'kyosu']]], + ['is_5fequal_4',['is_equal',['../group__functions_gabfab93a2a2b4f527d3c69eeb13856d2c.html#gabfab93a2a2b4f527d3c69eeb13856d2c',1,'kyosu']]], + ['is_5feqz_5',['is_eqz',['../group__functions_ga5ed3799fdd8b66d17a274669dcf3319b.html#ga5ed3799fdd8b66d17a274669dcf3319b',1,'kyosu']]], + ['is_5ffinite_6',['is_finite',['../group__functions_gaca9f3f8f0c75ddbff90aab0785d7a23f.html#gaca9f3f8f0c75ddbff90aab0785d7a23f',1,'kyosu']]], + ['is_5finfinite_7',['is_infinite',['../group__functions_ga9c043e0de4393e03663a8b017f3776d1.html#ga9c043e0de4393e03663a8b017f3776d1',1,'kyosu']]], + ['is_5fnan_8',['is_nan',['../group__functions_ga686170a43d13c97096af719b7c0e7fda.html#ga686170a43d13c97096af719b7c0e7fda',1,'kyosu']]], + ['is_5fnez_9',['is_nez',['../group__functions_ga7ab67d971ae8c2c4d99fe414d6085116.html#ga7ab67d971ae8c2c4d99fe414d6085116',1,'kyosu']]], + ['is_5fnot_5fdenormal_10',['is_not_denormal',['../group__functions_ga8e2d2c2ba91d22a96ff3603b42e4760d.html#ga8e2d2c2ba91d22a96ff3603b42e4760d',1,'kyosu']]], + ['is_5fnot_5fequal_11',['is_not_equal',['../group__functions_ga7bde9020d5e1ce1e69cdb7b011ef0a7d.html#ga7bde9020d5e1ce1e69cdb7b011ef0a7d',1,'kyosu']]], + ['is_5fnot_5ffinite_12',['is_not_finite',['../group__functions_ga441cd97a80d870b01cf6cd1ace7238e7.html#ga441cd97a80d870b01cf6cd1ace7238e7',1,'kyosu']]], + ['is_5fnot_5finfinite_13',['is_not_infinite',['../group__functions_ga3e5656e4788dbebd4450758cba9dab9d.html#ga3e5656e4788dbebd4450758cba9dab9d',1,'kyosu']]], + ['is_5fnot_5fnan_14',['is_not_nan',['../group__functions_gac91bff00b4c1a3c8e0b249a07bd6c080.html#gac91bff00b4c1a3c8e0b249a07bd6c080',1,'kyosu']]] ]; diff --git a/search/variables_8.js b/search/variables_8.js index 75f94127..47665049 100644 --- a/search/variables_8.js +++ b/search/variables_8.js @@ -1,4 +1,4 @@ var searchData= [ - ['nearest_0',['nearest',['../group__functions_ga8febd271f0bc94c5fb1d12cd5644778b.html#ga8febd271f0bc94c5fb1d12cd5644778b',1,'kyosu']]] + ['minus_0',['minus',['../group__functions_ga1b78fa57857ad714ce5f0e6e3ace5db9.html#ga1b78fa57857ad714ce5f0e6e3ace5db9',1,'kyosu']]] ]; diff --git a/search/variables_9.js b/search/variables_9.js index 2bf8842b..75f94127 100644 --- a/search/variables_9.js +++ b/search/variables_9.js @@ -1,4 +1,4 @@ var searchData= [ - ['purepart_0',['purepart',['../group__functions_ga3d4a351565ed14e9021990fa72f9de4a.html#ga3d4a351565ed14e9021990fa72f9de4a',1,'kyosu']]] + ['nearest_0',['nearest',['../group__functions_ga8febd271f0bc94c5fb1d12cd5644778b.html#ga8febd271f0bc94c5fb1d12cd5644778b',1,'kyosu']]] ]; diff --git a/search/variables_a.js b/search/variables_a.js index af30ea2b..01459045 100644 --- a/search/variables_a.js +++ b/search/variables_a.js @@ -1,5 +1,4 @@ var searchData= [ - ['real_0',['real',['../group__functions_gaa9d12dd4e1420039046c737ddd3240be.html#gaa9d12dd4e1420039046c737ddd3240be',1,'kyosu']]], - ['reldist_1',['reldist',['../group__functions_ga23d96b11ec047300319b6b8ccfa07765.html#ga23d96b11ec047300319b6b8ccfa07765',1,'kyosu']]] + ['oneminus_0',['oneminus',['../group__functions_gae8a89a63722b9cdec2f2d4daf58bf025.html#gae8a89a63722b9cdec2f2d4daf58bf025',1,'kyosu']]] ]; diff --git a/search/variables_b.js b/search/variables_b.js index 800cefba..2bf8842b 100644 --- a/search/variables_b.js +++ b/search/variables_b.js @@ -1,5 +1,4 @@ var searchData= [ - ['sqr_0',['sqr',['../group__functions_ga6ead34ff89aeb18c2380188af5f83dcd.html#ga6ead34ff89aeb18c2380188af5f83dcd',1,'kyosu']]], - ['sqr_5fabs_1',['sqr_abs',['../group__functions_ga297cbe86ab12760ec934f76879f805d0.html#ga297cbe86ab12760ec934f76879f805d0',1,'kyosu']]] + ['purepart_0',['purepart',['../group__functions_ga3d4a351565ed14e9021990fa72f9de4a.html#ga3d4a351565ed14e9021990fa72f9de4a',1,'kyosu']]] ]; diff --git a/search/variables_c.js b/search/variables_c.js index bb8bbd21..af30ea2b 100644 --- a/search/variables_c.js +++ b/search/variables_c.js @@ -1,5 +1,5 @@ var searchData= [ - ['to_5fcomplex_0',['to_complex',['../group__functions_ga467a58e50ffba284e333fac35f5cc93c.html#ga467a58e50ffba284e333fac35f5cc93c',1,'kyosu']]], - ['trunc_1',['trunc',['../group__functions_ga57a5e1064f03073d3e81144181f6ac71.html#ga57a5e1064f03073d3e81144181f6ac71',1,'kyosu']]] + ['real_0',['real',['../group__functions_gaa9d12dd4e1420039046c737ddd3240be.html#gaa9d12dd4e1420039046c737ddd3240be',1,'kyosu']]], + ['reldist_1',['reldist',['../group__functions_ga23d96b11ec047300319b6b8ccfa07765.html#ga23d96b11ec047300319b6b8ccfa07765',1,'kyosu']]] ]; diff --git a/search/variables_d.js b/search/variables_d.js new file mode 100644 index 00000000..800cefba --- /dev/null +++ b/search/variables_d.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['sqr_0',['sqr',['../group__functions_ga6ead34ff89aeb18c2380188af5f83dcd.html#ga6ead34ff89aeb18c2380188af5f83dcd',1,'kyosu']]], + ['sqr_5fabs_1',['sqr_abs',['../group__functions_ga297cbe86ab12760ec934f76879f805d0.html#ga297cbe86ab12760ec934f76879f805d0',1,'kyosu']]] +]; diff --git a/search/variables_e.js b/search/variables_e.js new file mode 100644 index 00000000..bb8bbd21 --- /dev/null +++ b/search/variables_e.js @@ -0,0 +1,5 @@ +var searchData= +[ + ['to_5fcomplex_0',['to_complex',['../group__functions_ga467a58e50ffba284e333fac35f5cc93c.html#ga467a58e50ffba284e333fac35f5cc93c',1,'kyosu']]], + ['trunc_1',['trunc',['../group__functions_ga57a5e1064f03073d3e81144181f6ac71.html#ga57a5e1064f03073d3e81144181f6ac71',1,'kyosu']]] +];