visitDateTime method

R visitDateTime(
  1. TomlDateTime value
)

Visits the given value.

This method is using TomlDateTime.acceptDateTimeVisitor to invoke the right visitor method from above.

Implementation

R visitDateTime(TomlDateTime value) => value.acceptDateTimeVisitor(this);