Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
4f0b1198
Commit
4f0b1198
authored
22 years ago
by
Martin Nilsson
Browse files
Options
Downloads
Patches
Plain Diff
Autodoc syntax fixes.
Rev: src/post_modules/_ADT/circular_list.cmod:1.4
parent
3fc76108
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/post_modules/_ADT/circular_list.cmod
+10
-10
10 additions, 10 deletions
src/post_modules/_ADT/circular_list.cmod
with
10 additions
and
10 deletions
src/post_modules/_ADT/circular_list.cmod
+
10
−
10
View file @
4f0b1198
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
|| This file is part of Pike. For copyright information see COPYRIGHT.
|| This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information.
|| for more information.
|| $Id: circular_list.cmod,v 1.
3
2003/04/0
5
1
3:39:45 grubba
Exp $
|| $Id: circular_list.cmod,v 1.
4
2003/04/0
7
1
6:11:49 nilsson
Exp $
*/
*/
#include
"global.h"
#include
"global.h"
...
@@ -394,7 +394,7 @@ PIKECLASS CircularList
...
@@ -394,7 +394,7 @@ PIKECLASS CircularList
*! @param value
*! @param value
*! The value to find
*! The value to find
*!
*!
*! @param
int
start
*! @param start
*! If a start value is supplied it will start searching at the index
*! If a start value is supplied it will start searching at the index
*! @[start].
*! @[start].
*!
*!
...
@@ -695,7 +695,7 @@ PIKECLASS CircularList
...
@@ -695,7 +695,7 @@ PIKECLASS CircularList
RETURN
THIS
->
a
->
size
;
RETURN
THIS
->
a
->
size
;
}
}
/*! @decl peekBack()
/*! @decl
mixed
peekBack()
*!
*!
*! @returns
*! @returns
*! The value at the back of the list but do not remove it from the list.
*! The value at the back of the list but do not remove it from the list.
...
@@ -715,7 +715,7 @@ PIKECLASS CircularList
...
@@ -715,7 +715,7 @@ PIKECLASS CircularList
Pike_sp
++
;
Pike_sp
++
;
}
}
/*! @decl peekFront()
/*! @decl
mixed
peekFront()
*!
*!
*! @returns
*! @returns
*! The value at the front of the list but do not remove it from the list.
*! The value at the front of the list but do not remove it from the list.
...
@@ -734,7 +734,7 @@ PIKECLASS CircularList
...
@@ -734,7 +734,7 @@ PIKECLASS CircularList
Pike_sp
++
;
Pike_sp
++
;
}
}
/*! @decl popBack()
/*! @decl
mixed
popBack()
*!
*!
*! Remove the value at the back of the list and return it.
*! Remove the value at the back of the list and return it.
*!
*!
...
@@ -758,7 +758,7 @@ PIKECLASS CircularList
...
@@ -758,7 +758,7 @@ PIKECLASS CircularList
}
}
/*! @decl popFront()
/*! @decl
mixed
popFront()
*!
*!
*! Remove the value at the front of the list and return it.
*! Remove the value at the front of the list and return it.
*!
*!
...
@@ -786,7 +786,7 @@ PIKECLASS CircularList
...
@@ -786,7 +786,7 @@ PIKECLASS CircularList
}
}
/*! @decl pushBack(mixed value)
/*! @decl
void
pushBack(mixed value)
*!
*!
*! Add a new value at the end of the list.
*! Add a new value at the end of the list.
*!
*!
...
@@ -810,7 +810,7 @@ PIKECLASS CircularList
...
@@ -810,7 +810,7 @@ PIKECLASS CircularList
}
}
/*! @decl pushFront(mixed value)
/*! @decl
void
pushFront(mixed value)
*!
*!
*! Add a new value at the end of the list.
*! Add a new value at the end of the list.
*!
*!
...
@@ -1200,7 +1200,7 @@ PIKECLASS CircularList
...
@@ -1200,7 +1200,7 @@ PIKECLASS CircularList
}
}
/*! @decl int
'
<(object iter)
/*! @decl int
`
<(object iter)
*! Less then operator
*! Less then operator
*!
*!
*! @returns
*! @returns
...
@@ -1223,7 +1223,7 @@ PIKECLASS CircularList
...
@@ -1223,7 +1223,7 @@ PIKECLASS CircularList
}
}
/*! @decl int
'
<(object iter)
/*! @decl int
`
<(object iter)
*! Greater then operator
*! Greater then operator
*!
*!
*! @returns
*! @returns
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment