[ 
https://issues.apache.org/jira/browse/SPARK-34587?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17293408#comment-17293408
 ] 

Apache Spark commented on SPARK-34587:
--------------------------------------

User 'LuciferYang' has created a pull request for this issue:
https://github.com/apache/spark/pull/31702

> Replaces map and getOrElse(false/true) with exists/forall
> ---------------------------------------------------------
>
>                 Key: SPARK-34587
>                 URL: https://issues.apache.org/jira/browse/SPARK-34587
>             Project: Spark
>          Issue Type: Improvement
>          Components: Spark Core, SQL
>    Affects Versions: 3.2.0
>            Reporter: Yang Jie
>            Priority: Trivial
>
> Code Simpilefications:
> *before*
> {code:java}
> option.map(booleanFunc).getOrElse(false)
> option.map(booleanFunc).getOrElse(true)
> {code}
> *after*
> {code:java}
> option.exists(booleanFunc)
> option.forall(booleanFunc)
> {code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@spark.apache.org
For additional commands, e-mail: issues-h...@spark.apache.org

Reply via email to