Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
e8109737af | |||
e553da2c61 |
@ -42,7 +42,9 @@ func (b *Buffer[T]) y(y int) int {
|
||||
|
||||
// Set sets the value at position (x,y) to c
|
||||
func (b *Buffer[T]) Set(x, y int, v T) {
|
||||
b.data[b.y(y)][b.x(x)] = v
|
||||
if b.width > 0 && b.height > 0 {
|
||||
b.data[b.y(y)][b.x(x)] = v
|
||||
}
|
||||
}
|
||||
|
||||
// Get returns the value at position (x,y)
|
||||
|
@ -17,3 +17,8 @@ func TestSub(t *testing.T) {
|
||||
fmt.Println(strings.Repeat("-", 10))
|
||||
fmt.Println(s)
|
||||
}
|
||||
|
||||
func TestSet(t *testing.T) {
|
||||
b := NewBuffer(0, 0, ' ')
|
||||
b.Set(0, 0, 'a')
|
||||
}
|
||||
|
Reference in New Issue
Block a user