Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
2ed128e2
Commit
2ed128e2
authored
May 26, 2018
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made dlib.range a little more like the python range.
parent
d2fa9e85
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
0 deletions
+1
-0
basic.cpp
tools/python/src/basic.cpp
+1
-0
No files found.
tools/python/src/basic.cpp
View file @
2ed128e2
...
...
@@ -182,6 +182,7 @@ void bind_basic_types(py::module& m)
typedef
pair
<
unsigned
long
,
unsigned
long
>
range_type
;
py
::
class_
<
range_type
>
(
m
,
"range"
,
"This object is used to represent a range of elements in an array."
)
.
def
(
py
::
init
<
unsigned
long
,
unsigned
long
>
())
.
def
(
py
::
init
([](
unsigned
long
end
){
return
range_type
(
0
,
end
);
}))
.
def_readwrite
(
"begin"
,
&
range_type
::
first
,
"The index of the first element in the range. This is represented using an unsigned integer."
)
.
def_readwrite
(
"end"
,
&
range_type
::
second
,
"One past the index of the last element in the range. This is represented using an unsigned integer."
)
.
def
(
"__str__"
,
range__str__
)
...
...
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