Examples for 'XML::libxmlVersion'


Query the version and available features of the libxml library.

Aliases: libxmlVersion libxmlFeatures

Keywords: IO

### ** Examples

 ver <- libxmlVersion()
 if(is.null(ver)) {
   cat("Relly old version of libxml\n")
 } else {
   if(ver$major > 1) {
     cat("Using libxml2\n")
   }
 }
Using libxml2

[Package XML version 3.99-0.10 Index]