#import "NullBool.h"

@implementation NullBool

- (instancetype)init {
    self = [super initWithValue:nil];

    return self;
}

@end
