Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
See what's new at GitLab
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
R
RcppUUID
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Artem Klevtsov
RcppUUID
Commits
8b3725e6
Verified
Commit
8b3725e6
authored
May 05, 2020
by
Artem Klevtsov
😹
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Spelling
parent
f1ad8689
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
DESCRIPTION
DESCRIPTION
+2
-2
R/RcppExports.R
R/RcppExports.R
+1
-1
R/RcppUUID-package.R
R/RcppUUID-package.R
+1
-1
man/RcppUUID.Rd
man/RcppUUID.Rd
+1
-1
man/uuid_generate_nil.Rd
man/uuid_generate_nil.Rd
+1
-1
src/uuid_nil.cpp
src/uuid_nil.cpp
+1
-1
No files found.
DESCRIPTION
View file @
8b3725e6
...
...
@@ -9,9 +9,9 @@ Authors@R: c(
email = "a.a.klevtsov@gmail.com",
comment = c(ORCID = "0000-0003-0492-6647"))
)
Description: Provides fun
stion
to generating a vector of Universally Unique Identifiers (UUID).
Description: Provides fun
ctions
to generating a vector of Universally Unique Identifiers (UUID).
Used implementation from the Boost C++ library. Supported random (version 4) and name (version 5)
UUIDs.
UUIDs generation are parallelized by OpenMP.
UUIDs.
URL: https://artemklevtsov.gitlab.io/rcppuuid, https://gitlab.com/artemklevtsov/rcppuuid
BugReports: https://gitlab.com/artemklevtsov/rcppuuid/issues
License: GPL (>= 2)
...
...
R/RcppExports.R
View file @
8b3725e6
...
...
@@ -29,7 +29,7 @@ uuid_generate_name <- function(x) {
.Call
(
`_RcppUUID_uuid_generate_name`
,
x
)
}
#' @title Gener
r
ates Nil UUIDs
#' @title Generates Nil UUIDs
#'
#' @description
#' Function generates nil uuids.
...
...
R/RcppUUID-package.R
View file @
8b3725e6
#' @title Generating Universally Unique Identificators
#'
#' @description
#' Provides fun
stion
to generating a vector of Universally Unique Identifiers (UUID).
#' Provides fun
ctions
to generating a vector of Universally Unique Identifiers (UUID).
#' Used implementation from the Boost C++ library. Supported random (version 4) and name (version 5)
#' UUIDs. UUIDs generation are parallelized by OpenMP.
#'
...
...
man/RcppUUID.Rd
View file @
8b3725e6
...
...
@@ -6,7 +6,7 @@
\alias{RcppUUID-package}
\title{Generating Universally Unique Identificators}
\description{
Provides fun
stion
to generating a vector of Universally Unique Identifiers (UUID).
Provides fun
ctions
to generating a vector of Universally Unique Identifiers (UUID).
Used implementation from the Boost C++ library. Supported random (version 4) and name (version 5)
UUIDs. UUIDs generation are parallelized by OpenMP.
}
...
...
man/uuid_generate_nil.Rd
View file @
8b3725e6
...
...
@@ -2,7 +2,7 @@
% Please edit documentation in R/RcppExports.R
\name{uuid_generate_nil}
\alias{uuid_generate_nil}
\title{Gener
r
ates Nil UUIDs}
\title{Generates Nil UUIDs}
\usage{
uuid_generate_nil(n = 1L)
}
...
...
src/uuid_nil.cpp
View file @
8b3725e6
...
...
@@ -7,7 +7,7 @@ using namespace Rcpp;
using
boost
::
uuids
::
nil_generator
;
using
boost
::
uuids
::
uuid
;
//' @title Gener
r
ates Nil UUIDs
//' @title Generates Nil UUIDs
//'
//' @description
//' Function generates nil uuids.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment