@@ -90,7 +90,7 @@ method(repr, PreprocessorConfig) <- function(
9090 output_type <- get_output_type(output_type )
9191 paste0(
9292 repr_S7name(" PreprocessorConfig" , pad = pad , output_type = output_type ),
93- show_ls (props(x ), pad = pad , limit = limit , output_type = output_type )
93+ repr_ls (props(x ), pad = pad , limit = limit , output_type = output_type )
9494 )
9595} # /rtemis::show.PreprocessorConfig
9696
@@ -350,7 +350,7 @@ method(repr, Preprocessor) <- function(
350350 output_type <- get_output_type(output_type )
351351 out <- paste0(
352352 repr_S7name(" Preprocessor" , pad = pad , output_type = output_type ),
353- show_ls (props(x ), pad = pad , print_df = print_df )
353+ repr_ls (props(x ), pad = pad , print_df = print_df )
354354 )
355355} # /rtemis::show.Preprocessor
356356
@@ -385,3 +385,8 @@ method(`[`, Preprocessor) <- function(x, name) {
385385method(`[[` , Preprocessor ) <- function (x , name ) {
386386 props(x )[[name ]]
387387}
388+
389+ # preprocessed.Preprocessor ----
390+ method(preprocessed , Preprocessor ) <- function (x ) {
391+ x @ preprocessed
392+ }
0 commit comments