You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deprecate string.isEmptyString for string.isEmpty
This PR deprecates `string.isEmptyString` for `string.isEmpty`, standardizing the interface for methods asking "is this thing empty?" in Chapel's standard library.
Closes#11437
[Reviewed by @ronawho]
One of these doesn't look like the rest..
array.isEmpty()
domain.isEmpty()
range.isEmpty()
string.isEmptyString()
Should
string.isEmptyString()
bestring.isEmpty()
like the others?I am not aware of the motivation for the unique string method name here if such a motivation exists.
The text was updated successfully, but these errors were encountered: