Re: [LANG] Add Any Checks for Not Checks in StringUtils

2024-06-12 Thread Department 8
I see the point you are making. Thanks for taking the time to review it. On Wed, Jun 12, 2024, 23:30 Gary Gregory wrote: > See also my comment in the PR. > > Gary > > On Wed, Jun 12, 2024, 1:22 PM Department 8 > wrote: > > > Haha! It was in fact because of other methods that have simple negatio

Re: [DRAFT] June Report to the Board

2024-06-12 Thread sebb
On Wed, 12 Jun 2024 at 18:58, Gary D. Gregory wrote: > > On 2024/06/12 17:17:24 Phil Steitz wrote: > > +1 > > I have had to filter out most of the messages and once I do that, there is > > almost no actual discussion on-list. I am worried that when people do try > > to start discussion, the mess

Re: [LANG] Add Any Checks for Not Checks in StringUtils

2024-06-12 Thread Gary Gregory
See also my comment in the PR. Gary On Wed, Jun 12, 2024, 1:22 PM Department 8 wrote: > Haha! It was in fact because of other methods that have simple negation > that I thought maybe giving a PR would be Okay :) > > I think that many times, it is the Boolean Logic that may trivial for us, > but

Re: [DRAFT] June Report to the Board

2024-06-12 Thread Gary D. Gregory
On 2024/06/12 17:17:24 Phil Steitz wrote: > On Wed, Jun 12, 2024 at 7:27 AM sebb wrote: > > > On Wed, 12 Jun 2024 at 14:45, Gary D. Gregory wrote: > > > > > > Hello All, > > > > > > Here is the draft of our board report for June I plan on submitting in a > > day or so, feedback is welcome. > > >

Re: [DRAFT] June Report to the Board

2024-06-12 Thread Gary D. Gregory
On 2024/06/12 14:26:53 sebb wrote: > On Wed, 12 Jun 2024 at 14:45, Gary D. Gregory wrote: > > > > Hello All, > > > > Here is the draft of our board report for June I plan on submitting in a > > day or so, feedback is welcome. > > > > ## Description: > > The mission of Apache Commons is the creati

Re: [DRAFT] June Report to the Board

2024-06-12 Thread Gary D. Gregory
I've edited the sections commented on as: ## Project Activity: Many releases of our components: CONFIGURATION-2.11.0 was released on 2024-06-10. NET-3.11.1 was released on 2024-06-10. PARENT-71 was released on 2024-06-10. JEXL-3.4.0 was released on 2024-06-06. NET-3.11.0 was re

[COLLECTIONS] 4.5.0-M2 is next to capture latest bloom filter code

2024-06-12 Thread Gary D. Gregory
HI All, Claude W, Alex H: I would like to cut a 4.5.0-M2 RC later this week to capture latest bloom filter code. Feel free to ask me to hold back if you plan further changes first. TY! Gary - To unsubscribe, e-mail: dev-unsubs

Re: [LANG] Add Any Checks for Not Checks in StringUtils

2024-06-12 Thread Department 8
Haha! It was in fact because of other methods that have simple negation that I thought maybe giving a PR would be Okay :) I think that many times, it is the Boolean Logic that may trivial for us, but for some who may be using them to have a utility methods like isNotBlank aka (!isBlank) maybe help

Re: [DRAFT] June Report to the Board

2024-06-12 Thread Phil Steitz
On Wed, Jun 12, 2024 at 7:27 AM sebb wrote: > On Wed, 12 Jun 2024 at 14:45, Gary D. Gregory wrote: > > > > Hello All, > > > > Here is the draft of our board report for June I plan on submitting in a > day or so, feedback is welcome. > > > > ## Description: > > The mission of Apache Commons is th

Re: [LANG] Add Any Checks for Not Checks in StringUtils

2024-06-12 Thread Alex Herbert
On Wed, 12 Jun 2024 at 18:03, Department 8 wrote: > Sorry Alex just now saw your email, before sending out the PR! > > I had done just for isAllEmpty and isAllBlank. > > Can you tell me more on what can be done, when you said the following: > > If you are simply negating the result of another met

Re: [LANG] Add Any Checks for Not Checks in StringUtils

2024-06-12 Thread Department 8
Sorry Alex just now saw your email, before sending out the PR! I had done just for isAllEmpty and isAllBlank. Can you tell me more on what can be done, when you said the following: If you are simply negating the result of another method then this use case may be better served with addition of a

Re: [LANG] Add Any Checks for Not Checks in StringUtils

2024-06-12 Thread Department 8
I just realized the subject name is bad. But here are the two small methods I propose - *isAnyNotBlank* and *isAnyNotEmpty*. Please find the pull request as here: https://github.com/apache/commons-lang/pull/1234 On Wed, 12 Jun 2024 at 21:52, Department 8 wrote: > Hey! > > Recently when using St

Re: [LANG] Add Any Checks for Not Checks in StringUtils

2024-06-12 Thread Alex Herbert
Hi, On Wed, 12 Jun 2024 at 17:23, Department 8 wrote: > Hey! > > Recently when using StringUtils in one of our projects I had felt the > urgent need to have a utility method like => isAnyNotBlank. > > I was able to achieve this using the negation of isAllBlank, so I am > thinking of introducing

Re: [DRAFT] June Report to the Board

2024-06-12 Thread sebb
On Wed, 12 Jun 2024 at 14:45, Gary D. Gregory wrote: > > Hello All, > > Here is the draft of our board report for June I plan on submitting in a day > or so, feedback is welcome. > > ## Description: > The mission of Apache Commons is the creation and maintenance of Java focused > reusable librari

Re: [DRAFT] June Report to the Board

2024-06-12 Thread Gilles Sadowski
Hi. Le mer. 12 juin 2024 à 15:45, Gary D. Gregory a écrit : > > Hello All, > > Here is the draft of our board report for June I plan on submitting in a day > or so, feedback is welcome. > > ## Description: > The mission of Apache Commons is the creation and maintenance of Java focused > reusable

[DRAFT] June Report to the Board

2024-06-12 Thread Gary D. Gregory
Hello All, Here is the draft of our board report for June I plan on submitting in a day or so, feedback is welcome. ## Description: The mission of Apache Commons is the creation and maintenance of Java focused reusable libraries and components ## Project Status: Current project status: Ongoing

Re: will Quartet be available in org.apache.commons.lang3.tuple

2024-06-12 Thread Paul King
On Sun, Jun 9, 2024 at 10:29 PM Gary Gregory wrote: > > Please do ;-) Groovy provides Tuple0 through Tuple16 all of which extend Tuple which implements List. Tuple2 acts like Pair (more accurately ImmutablePair). Tuple2 implements Serializable and Comparable (like Pair) but not (currently) Map.E