Home
last modified time | relevance | path

Searched refs:as_tuple (Results 1 – 11 of 11) sorted by relevance

/third_party/boost/boost/test/data/monomorphic/
Dsample_merge.hpp75 inline auto as_tuple( T && arg ) in as_tuple() function
89 -> decltype( std::tuple_cat(ds_detail::as_tuple(std::forward<T1>(a1)), in sample_merge()
90 ds_detail::as_tuple(std::forward<T2>(a2)) ) ) { in sample_merge()
91 return std::tuple_cat(ds_detail::as_tuple(std::forward<T1>(a1)), in sample_merge()
92 ds_detail::as_tuple(std::forward<T2>(a2))); in sample_merge()
/third_party/boost/libs/hana/include/boost/hana/experimental/
Dprintable.hpp226 auto as_tuple = hana::transform(hana::to_tuple(set), in apply() local
228 auto comma_separated = hana::intersperse(as_tuple, ", "); in apply()
/third_party/boost/boost/hana/experimental/
Dprintable.hpp226 auto as_tuple = hana::transform(hana::to_tuple(set), in apply() local
228 auto comma_separated = hana::intersperse(as_tuple, ", "); in apply()
/third_party/python/Lib/sqlite3/test/
Dfactory.py215 as_tuple = tuple(row)
216 self.assertEqual(list(reversed(row)), list(reversed(as_tuple)))
/third_party/python/Lib/logging/
Dconfig.py481 def as_tuple(self, value): member in BaseConfigurator
738 config['mailhost'] = self.as_tuple(config['mailhost'])
741 config['address'] = self.as_tuple(config['address'])
/third_party/python/Lib/test/
Dtest_decimal.py2055 self.assertEqual(d.as_tuple(), (0, (0,), 0) )
2059 self.assertEqual(d.as_tuple(), (1, (4, 5), 0) )
2063 self.assertEqual(d.as_tuple(), (1, (4, 3, 4, 9, 1, 3, 5, 3, 4), -25) )
2068 self.assertEqual(d.as_tuple(), (0, (0,), 'F') )
2072 self.assertEqual(d.as_tuple(), (0, (4, 0, 5, 3, 4), -2) )
2074 self.assertEqual(d.as_tuple(), (1, (0,), 37))
2076 self.assertEqual(d.as_tuple(), (1, (0,), 37))
2080 self.assertEqual(d.as_tuple(), (0, (4, 0, 5, 3, 4), 'n') )
2082 self.assertEqual(d.as_tuple(), (1, (), 'N') )
2084 self.assertEqual(d.as_tuple(), (1, (), 'n') )
[all …]
Dtest_statistics.py60 aexp = a.as_tuple()[2]
61 bexp = b.as_tuple()[2]
/third_party/python/Modules/_decimal/tests/
Ddeccheck.py845 t.cresults.append(t.rc.as_tuple())
849 t.presults.append(t.rp.as_tuple())
855 t.maxresults.append(t.rmax.as_tuple())
/third_party/python/Doc/library/
Ddecimal.rst473 .. method:: as_tuple()
1040 the exception of the :meth:`adjusted` and :meth:`as_tuple` methods) there is
1859 sign, digits, exp = value.quantize(q).as_tuple()
/third_party/python/Lib/
D_pydecimal.py969 def as_tuple(self): member in Decimal
/third_party/python/Doc/whatsnew/
D2.6.rst1877 the :meth:`Decimal.as_tuple` method now returns a named tuple with
1940 The :meth:`as_tuple` method of :class:`Decimal` objects now returns a