Невозможно использовать string.contains () в выражении kotlin `when`

byte[] conv = new byte[4];
conv[3] = (byte) input & 0xff;
input >>= 8;
conv[2] = (byte) input & 0xff;
input >>= 8;
conv[1] = (byte) input & 0xff;
input >>= 8;
conv[0] = (byte) input;
13
задан Goku 12 April 2018 в 20:51
поделиться