1#' Representation of data.table objects
2#'
3#' @param obj  The list to create a representation for
4#' @param ...  ignored
5#'
6#' @name repr_*.data.table
7#' @export
8repr_html.data.table <- function(obj, ...) {
9	if (data.table::shouldPrint(obj))
10		NextMethod()
11}
12
13#' @name repr_*.data.table
14#' @export
15repr_text.data.table <- function(obj, ...) {
16	if (data.table::shouldPrint(obj))
17		NextMethod()
18}
19
20#' @name repr_*.data.table
21#' @export
22repr_latex.data.table <- function(obj, ...) {
23	if (data.table::shouldPrint(obj))
24		NextMethod()
25}
26