Skip to content

Fulminazzo/FulmiCollection

Repository files navigation

FulmiCollection

FulmiCollection is a library project created by Fulminazzo that contains various utility methods and classes used across the projects.

Exceptions

Contents Description
GeneralCannotBeNullException An exception with "%object% cannot be null." as message.
ClassCannotBeNullException GeneralCannotBeNullException
NameCannotBeNullException GeneralCannotBeNullException

Objects

Contents Description
Printable An object that allows printing of its inheritor fields

Functions

Contents Description
ConsumerException (f) -> void throws Exception
FunctionException (f) -> r throws Exception
BiConsumerException (f, s) -> void throws Exception
BiFunctionException (f, s) -> r throws Exception
TriConsumer (f, s, t) -> void
TriConsumerException (f, s, t) -> void throws Exception
TriFunction (f, s, t) -> r
TriFunctionException (f, s, t) -> r throws Exception
TetraConsumer (f, s, t, q) -> void
TetraConsumerException (f, s, t, q) -> void throws Exception
TetraFunction (f, s, t, q) -> r
TetraFunctionException (f, s, t, q) -> r throws Exception
PentaConsumer (f, s, t, q, p) -> void
PentaConsumerException (f, s, t, q, p) -> void throws Exception
PentaFunction (f, s, t, q, p) -> r
PentaFunctionException (f, s, t, q, p) -> r throws Exception