All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.joern.x2cpg.utils.StringUtils.scala Maven / Gradle / Ivy

There is a newer version: 4.0.131
Show newest version
package io.joern.x2cpg.utils

implicit class StringUtils(str: String) {
  def isAllUpperCase: Boolean = {
    str.forall(c => c.isUpper || !c.isLetter)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy