Open In App

Scala BitSet addString(b: StringBuilder, sep: String) method with separator

Improve
Improve
Like Article
Like
Save
Share
Report

Scala Bitsets are sets of non-negative integers which are represented as variable-size arrays of bits packed into 64-bit words. The addString(sb: mutable.StringBuilder, start: String, sep: String, end: String) method is utilised to appends all elements of this bitset to a string builder using a separator string.

Method Definition: def addString()

Return Type: It returns the string builder b to which elements were appended.

Example #1:




// Scala program of Bitset addString
// method 
import scala.collection.immutable.BitSet 
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
  
        val bitSet: BitSet = BitSet(11, 22, 33, 44
        val b = new StringBuilder()
  
  
        // Applying BitSet addString() function 
        val  bs1 = bitSet.addString(b, ", ")
          
        // Displays output 
        println(bs1
      
    


Output:

11, 22, 33, 44

Example #2:




// Scala program of Bitset addString
// method 
import scala.collection.immutable.BitSet 
  
// Creating object 
object GfG 
  
    // Main method 
    def main(args:Array[String]) 
    
  
        val bitSet: BitSet = BitSet(1, 2, 3
        val b = new StringBuilder()
  
  
        // Applying BitSet addString() function 
        val  bs1 = bitSet.addString(b, "-Geek-  ")
          
        // Displays output 
        println(bs1
      
    


Output:

1-Geek-  2-Geek-  3


Last Updated : 04 May, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads