1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/utils.R
\name{orderVersion}
\alias{orderVersion}
\alias{sortVersion}
\title{Ordering Version Numbers}
\usage{
orderVersion(x, ..., decreasing = FALSE)
sortVersion(x, ...)
}
\arguments{
\item{x}{a character vector of version numbers}
\item{...}{extra parameters passed to \code{orderVersion} and \code{\link{order}}}
\item{decreasing}{a logical that indicates if the ordering should be decreasing}
}
\value{
A character vector.
}
\description{
Orders a vector of version numbers, in natural order.
}
\examples{
v <- c('1.0', '1.03', '1.2')
order(v)
orderVersion(v)
sort(v)
sortVersion(v)
}
|