diff --git a/source/simple/support/array_operators.hpp b/source/simple/support/array_operators.hpp
index 42a8ce065ad1062e0e5013047bb948fa67d4454a..b2345975ab1aab061dd92a7332af7fa821146839 100644
--- a/source/simple/support/array_operators.hpp
+++ b/source/simple/support/array_operators.hpp
@@ -237,6 +237,7 @@ namespace simple::support
 		constexpr Result operator()(const Type& one) const { return ~one; }
 	};
 
+	// public
 	template <typename Type>
 	struct define_array_operators
 	{
@@ -255,6 +256,7 @@ namespace simple::support
 		constexpr static const Type& get_array(const Type& object) noexcept { return object; }
 	};
 
+	// public
 	template <typename T>
 	struct array_operator_implicit_conversion { using type = support::remove_cvref_t<T>; };
 	template <typename T>