hikyuu2/hikyuu_cpp/hikyuu/indicator/crt/DROPNA.h
2019-06-01 23:54:18 +08:00

31 lines
455 B
C++

/*
* DROPNA.h
*
* Copyright (c) 2019, hikyuu.org
*
* Created on: 2019-5-28
* Author: fasiondog
*/
#ifndef INDICATOR_CRT_DROPNA_H_
#define INDICATOR_CRT_DROPNA_H_
#include "../Indicator.h"
namespace hku {
/**
* 删除nan值
* @ingroup Indicator
*/
Indicator HKU_API DROPNA();
Indicator DROPNA(const Indicator& ind);
inline Indicator DROPNA(const Indicator& ind) {
return DROPNA()(ind);
}
}
#endif /* INDICATOR_CRT_DROPNA_H_ */