Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
4122c320
Commit
4122c320
authored
Oct 17, 2017
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add `{String,Symbol}#casecmp?`; CRuby2.4
parent
db8265f4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
2 deletions
+28
-2
mrbgems/mruby-string-ext/mrblib/string.rb
mrbgems/mruby-string-ext/mrblib/string.rb
+14
-1
mrbgems/mruby-symbol-ext/mrblib/symbol.rb
mrbgems/mruby-symbol-ext/mrblib/symbol.rb
+14
-1
No files found.
mrbgems/mruby-string-ext/mrblib/string.rb
View file @
4122c320
...
...
@@ -144,7 +144,20 @@ class String
def
casecmp
(
str
)
self
.
downcase
<=>
str
.
to_str
.
downcase
rescue
NoMethodError
raise
TypeError
,
"no implicit conversion of
#{
str
.
class
}
into String"
nil
end
##
# call-seq:
# str.casecmp?(other) -> true, false, or nil
#
# Returns true if str and other_str are equal after case folding,
# false if they are not equal, and nil if other_str is not a string.
def
casecmp?
(
str
)
c
=
self
.
casecmp
(
str
)
return
nil
if
c
.
nil?
return
c
==
0
end
def
partition
(
sep
)
...
...
mrbgems/mruby-symbol-ext/mrblib/symbol.rb
View file @
4122c320
...
...
@@ -48,10 +48,23 @@ class Symbol
def
casecmp
(
other
)
return
nil
unless
other
.
kind_of?
(
Symbol
)
lhs
=
self
.
to_s
;
lhs
.
upcase!
rhs
=
other
.
to_s
;
rhs
.
upcase!
rhs
=
other
.
to_s
.
upcase
lhs
<=>
rhs
end
##
# call-seq:
# sym.casecmp?(other) -> true, false, or nil
#
# Returns true if sym and other_sym are equal after case folding,
# false if they are not equal, and nil if other_sym is not a string.
def
casecmp?
(
sym
)
c
=
self
.
casecmp
(
sym
)
return
nil
if
c
.
nil?
return
c
==
0
end
#
# call-seq:
# sym.empty? -> true or false
...
...
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