#import "NullDouble.h"

@implementation NullDouble

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

    return self;
}

@end
