package
1.6.6
Repository: https://github.com/nigel2392/go-django.git
Documentation: pkg.go.dev

# Functions

Assert asserts that the condition is true if the condition is false, it panics with the message.
AssertFunc asserts that the condition is true if the condition is false, it panics with the message.
Contains asserts that the value is in the slice if the value is not in the slice, it panics with the message.
ContainsFunc asserts that the value is in the slice if the value is not in the slice, it panics with the message.
Equal asserts that the two values are equal if the two values are not equal, it panics with the message.
Err asserts that the error is nil if the error is not nil, it panics with the message.
ErrNil asserts that the error is not nil if the error is nil, it panics with the message.
Fail is called when an assertion fails It is used to either return an error if PanicEnabled is false or panic if PanicEnabled is true.
FailFunc is a function that is called when an assertion fails it is used to customize the behavior of the assertion.
False asserts that the condition is false if the condition is true, it panics with the message.
Falsy asserts that the value is falsy A value is falsy if it is an invalid value or the zero value.
Gt asserts that the length of the slice is greater than the min if the length is less than or equal to the min, it panics with the message.
Gte asserts that the length of the slice is greater than or equal to the min if the length is less than the min, it panics with the message.
Lt asserts that the length of the slice is less than the max if the length is greater than or equal to the max, it panics with the message.
Lte asserts that the length of the slice is less than or equal to the max if the length is greater than the max, it panics with the message.
True asserts that the condition is true if the condition is false, it panics with the message.
Truthy asserts that the value is truthy A value is truthy if it is not an invalid value and not the zero value.

# Variables

No description provided by the author
No description provided by the author
No description provided by the author

# Type aliases

No description provided by the author