Exemple #1
0
typename
fcppt::math::matrix::object<
	T,
	R,
	C,
	S
>::const_reference
fcppt::math::matrix::object<
	T,
	R,
	C,
	S
>::get_unsafe(
	size_type const _j
) const
{
	return
		const_reference(
			typename
			const_reference::storage_type(
				storage_,
				_j,
				this->columns()
			)
		);
}
Exemple #2
0
typename fcppt::container::bitfield::object<
	ElementType,
	NumElements,
	InternalType
>::const_reference
fcppt::container::bitfield::object<
	ElementType,
	NumElements,
	InternalType
>::operator[](
	ElementType const _index
) const
{
	return
		const_reference(
			array_,
			this->to_index(
				_index
			)
		);
}
Exemple #3
0
 const_reference make_reference(value_type const* p) const {
     return const_reference(p);
 }