12 #ifndef MLPACK_BINDINGS_JULIA_PRINT_OUTPUT_PROCESSING_HPP
13 #define MLPACK_BINDINGS_JULIA_PRINT_OUTPUT_PROCESSING_HPP
28 const std::string& functionName,
30 const typename std::enable_if<!std::is_same<T,
31 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
39 const std::string& functionName,
40 const typename std::enable_if<arma::is_arma_type<T>::value>::type* = 0,
41 const typename std::enable_if<!std::is_same<T,
42 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
50 const std::string& functionName,
51 const typename std::enable_if<!arma::is_arma_type<T>::value>::type* = 0,
53 const typename std::enable_if<!std::is_same<T,
54 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
62 const std::string& functionName,
63 const typename std::enable_if<std::is_same<T,
64 std::tuple<data::DatasetInfo, arma::mat>>::value>::type* = 0);
75 PrintOutputProcessing<typename std::remove_pointer<T>::type>(d,
76 *((std::string*) input));
83 #include "print_output_processing_impl.hpp"