12 #ifndef MLPACK_BINDINGS_JULIA_PRINT_INPUT_PROCESSING_HPP
13 #define MLPACK_BINDINGS_JULIA_PRINT_INPUT_PROCESSING_HPP
26 const std::string& functionName,
28 const typename std::enable_if<!std::is_same<T,
29 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
37 const std::string& functionName,
38 const typename std::enable_if<arma::is_arma_type<T>::value>::type* = 0,
39 const typename std::enable_if<!std::is_same<T,
40 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
48 const std::string& functionName,
49 const typename std::enable_if<!arma::is_arma_type<T>::value>::type* = 0,
51 const typename std::enable_if<!std::is_same<T,
52 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
61 const std::string& functionName,
62 const typename std::enable_if<std::is_same<T,
63 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
74 PrintInputProcessing<typename std::remove_pointer<T>::type>(d,
75 *((std::string*) input));
82 #include "print_input_processing_impl.hpp"