java.io.BufferedReader.readLine()
returns us a "String containing the contents of the line, not including any line-termination characters". Is there any reader that will give us information about encountered line terminator?
Of course, we can just read sign by sign - but I wanted to know if there is a ready class/method for that?